Control LED using Blynk 2.0/Blynk IOT using Simple Program | Blynk 2.0 Projects | Node MCU Projects

  Рет қаралды 61,955

Tech Trends Shameer

Tech Trends Shameer

Күн бұрын

Пікірлер: 106
@huaweigr3856
@huaweigr3856 2 жыл бұрын
It works on my 1st attempt. I used ESP8266 Wemos D1 LED - (D9) + (3.3v)
@TechTrendsShameer
@TechTrendsShameer 2 жыл бұрын
Great
@skeditz2917
@skeditz2917 3 ай бұрын
When I copy pasted this I got an error on this line - #include 😢
@ChubbaBoastinTone766
@ChubbaBoastinTone766 2 жыл бұрын
Thanks sir, I've been looking for 3 days for a simple walk through like this. All others were either legacy Blynk or had links to codes that were never obtainable...... so frustrating. Mine didn't work at first but I had accidently chose INTEGER instead of DIGITAL for my control. Also to newbs, make sure your add your wifi creds and pw's to code. Thanks again this is great.
@TechTrendsShameer
@TechTrendsShameer 2 жыл бұрын
Thank you so much Bro.
@justicemkandawire9211
@justicemkandawire9211 2 жыл бұрын
Thanks bro, but wat happen if the project is successful ,,am i going to be continuing paying the blynk app after the pay period expired?
@ChubbaBoastinTone766
@ChubbaBoastinTone766 2 жыл бұрын
@@justicemkandawire9211 the blynk app has a free version that’s more than enough for a semi serious hobbyist. 2 devices and 30 functions each I believe.
@clawsanjuyt1608
@clawsanjuyt1608 2 ай бұрын
Ssid and password of my mobile hotspot right I have to use that
@ndaghakangoma6003
@ndaghakangoma6003 Жыл бұрын
great video !!..I was doing the same project but I used an arduino mkr wifi 1010 instead of esp ...arduino mkr wifi is an arduino with wifi capabiilities.. You're instructions were very clear and I was able to finish the project and it all worked out
@TechTrendsShameer
@TechTrendsShameer Жыл бұрын
Great 👍Whether the code is same for Arduino MKR Wifi? Please share the details. I will also give a try.
@keerthanabantumilli585
@keerthanabantumilli585 9 ай бұрын
It works... Thank you soo much sir
@TechTrendsShameer
@TechTrendsShameer 9 ай бұрын
Welcome 👍. Please subscribe and follow instagram 😊
@RojinaSundas-v1z
@RojinaSundas-v1z 3 ай бұрын
Very Good🤗
@KIYANSHJAINSuchitraAcademy
@KIYANSHJAINSuchitraAcademy 11 ай бұрын
Hi, which version of ESP2866 works in Adruino?
@TechTrendsShameer
@TechTrendsShameer 11 ай бұрын
Try Arduino 1.8 or 2.
@harshinir440
@harshinir440 2 жыл бұрын
awesome sir . Its working
@TechTrendsShameer
@TechTrendsShameer 2 жыл бұрын
Thank you 😊
@KIYANSHJAINSuchitraAcademy
@KIYANSHJAINSuchitraAcademy 11 ай бұрын
I keep getting this error when I try to upload program :A fatal esptool.py error occurred: Timed out waiting for packet header
@vignanb1585
@vignanb1585 Ай бұрын
Thank you sir WORKING
@TechTrendsShameer
@TechTrendsShameer Ай бұрын
Welcome 👍
@samde7903
@samde7903 2 жыл бұрын
El único vídeo que me sirvió, good work 🤙
@TechTrendsShameer
@TechTrendsShameer 2 жыл бұрын
Thank you 😊
@prodyumnapal5430
@prodyumnapal5430 8 ай бұрын
Great! Can it be controlled form anywhere in the world?
@TechTrendsShameer
@TechTrendsShameer 8 ай бұрын
Yes
@AnkitSaini-kr6oz
@AnkitSaini-kr6oz 2 жыл бұрын
It works in my first attempt
@TechTrendsShameer
@TechTrendsShameer 2 жыл бұрын
That's Great. Good to Know. Thank you. Keep Supporting.
@AnkitSaini-kr6oz
@AnkitSaini-kr6oz 2 жыл бұрын
@@TechTrendsShameer can you help me in project. My project is smart dustbin. In which I'm using ultra sonic sensor to get notification by blynk app when my dustbin is full. I am facing problem to get the notification on my blynk app. Please help me. And thank you ☺️ for my help
@TechTrendsShameer
@TechTrendsShameer 2 жыл бұрын
Can you send me your program? Also which version of blynk you are using ? Blynk Legacy or Blynk iot?
@AnkitSaini-kr6oz
@AnkitSaini-kr6oz 2 жыл бұрын
@@TechTrendsShameer #define BLYNK_PRINT Serial #include #include const int trigger = 9; const int echo = 10; float duration; int distance, percentage; const int upper_limit = 5; const int bottom_limit = 80; // You should get Auth Token in the Blynk App. // Go to the Project Settings (nut icon). char auth[] = "xSUtGHO53BQ3Wn8sVs2otaIehrdxodrB"; // Your WiFi credentials. // Set password to "" for open networks. char ssid[] = "vivo 1801"; char pass[] = "abhishek"; void setup() { Serial.begin(9600); pinMode(trigger, OUTPUT); pinMode(echo, INPUT); digitalWrite(trigger, LOW); Blynk.begin(auth, ssid, pass); } void sensor() { digitalWrite(trigger, HIGH); delayMicroseconds(10); digitalWrite(trigger, LOW); duration = pulseIn(echo, HIGH); distance = duration * 0.017; percentage= ((bottom_limit - distance)/(bottom_limit - upper_limit))*100; //Actually percentage = (((bottom_limit - upper_limit)- (distance - upper_limit))/(bottom_limit - upper_limit)))*100; } BLYNK_READ(V5){ Blynk.virtualWrite(V5, percentage); } void loop() { sensor(); Blynk.run(); BLYNK_READ(V5); } This is my code . And here I am using blynk iot app. Please help☺️
@harsh9266
@harsh9266 Жыл бұрын
How we connect more than one led I was trying to connect through D5 Select digital pin 1 in blynk it's not working
@TechTrendsShameer
@TechTrendsShameer Жыл бұрын
Did you tried with 1 LED? If not please try with that. Once you get the output, I will tell you the modifications in the code for 5 LEDs.
@meliodasagario398
@meliodasagario398 Жыл бұрын
@@TechTrendsShameer i did tried with 1 LED and it worked! pls do more than 1 LED
@TechTrendsShameer
@TechTrendsShameer Жыл бұрын
After Wifi Connection add these lines in the code int ledpin = D4; int ledpin = D1; int ledpin = D2; int ledpin = D3; int ledpin = D5; Then Connect LED 1 to D4, LED 2 to D1, LED 3 to D2, LED 4 to D5, LED 5 to D6 IN Blynk Datastream, select the variable as 2, 5, 4, 0, 14
@j.nazarenorosas6154
@j.nazarenorosas6154 9 күн бұрын
Muito bem explicado!!! Meu projeto só funcionou a partir do código postado nesse canal.
@TechTrendsShameer
@TechTrendsShameer 9 күн бұрын
Thank you. Please subscribe and support.
@KavyaReddy-u5s
@KavyaReddy-u5s Жыл бұрын
Sir can i use 3 LEDs instead of 1 LED If yes please tell me how to connect 3 LEDs Is there any use of resistors
@santanupramanik4913
@santanupramanik4913 Жыл бұрын
Where did you learn coding? What are resources you have?
@TechTrendsShameer
@TechTrendsShameer Жыл бұрын
Please connect me in Instagram
@santanupramanik4913
@santanupramanik4913 Жыл бұрын
@@TechTrendsShameer Don't have insta. What to do then?
@TechTrendsShameer
@TechTrendsShameer Жыл бұрын
shameer50@gmail.com
@jaquelynsingalensut5924
@jaquelynsingalensut5924 Жыл бұрын
why my blynk.run(); it says does not declare in the scope
@TechTrendsShameer
@TechTrendsShameer Жыл бұрын
Are you using blynk updated version?
@KIYANSHJAINSuchitraAcademy
@KIYANSHJAINSuchitraAcademy Жыл бұрын
@3.44 mins, you are saying copy code and upload program, where and how to upload the program?
@TechTrendsShameer
@TechTrendsShameer 11 ай бұрын
Check video description for the code.
@blacksattai1675
@blacksattai1675 2 жыл бұрын
Can we use more than one led
@TechTrendsShameer
@TechTrendsShameer 2 жыл бұрын
Yes. You can use more than 1 LED.
@narendrashiva9360
@narendrashiva9360 2 жыл бұрын
Will it work from anywhere in the world?
@TechTrendsShameer
@TechTrendsShameer 2 жыл бұрын
Yes.
@SALIMkhan-cf4bh
@SALIMkhan-cf4bh 2 жыл бұрын
THANKS, WORKING CODE
@TechTrendsShameer
@TechTrendsShameer 2 жыл бұрын
Welcome 👍
@balajiyuvaraj718
@balajiyuvaraj718 Жыл бұрын
maya doola dirachav ne tho mamulga vundadhu thop nuvu
@Neptune_studious
@Neptune_studious 3 ай бұрын
What is the cost of node mcu ???
@TechTrendsShameer
@TechTrendsShameer 3 ай бұрын
Around 250 rs.
@sknajirhosen777
@sknajirhosen777 2 ай бұрын
In Kolkata chadni market it price 150 rs
@travel_vloz3430
@travel_vloz3430 7 ай бұрын
Which platform to run the code
@TechTrendsShameer
@TechTrendsShameer 7 ай бұрын
Arduino IDE.
@diyeagle1
@diyeagle1 8 ай бұрын
Sir mera blynk switch thoda late work kr rha hai on off hone me kch secs lgta hai
@susmithak8574
@susmithak8574 2 жыл бұрын
Sir when we code is uploading and y sir don't show in online our device
@TechTrendsShameer
@TechTrendsShameer 2 жыл бұрын
The device will show online once the code is completed uploading. Please check the template ID, device id and auth token are correct. Also make sure the wifi credentials are correct. If you are still facing issues, please contact me on instagram instagram.com/tech_trends_shameer
@TechTrendsShameer
@TechTrendsShameer 2 жыл бұрын
@@susmithak8574 I didn't understand the doubt clearly. Can you please connect me in instagram instagram.com/tech_trends_shameer
@musicaddict12345
@musicaddict12345 Жыл бұрын
I did not get which programme u were talking
@TechTrendsShameer
@TechTrendsShameer 11 ай бұрын
Check video description for the code.
@madh6244
@madh6244 Жыл бұрын
thank you
@TechTrendsShameer
@TechTrendsShameer Жыл бұрын
You're welcome
@KPP26
@KPP26 7 ай бұрын
where we get the program
@TechTrendsShameer
@TechTrendsShameer 7 ай бұрын
Check video description.
@shirishakothuri1454
@shirishakothuri1454 11 ай бұрын
Hello sir!!! device is showing online but led is not getting on😢
@TechTrendsShameer
@TechTrendsShameer 11 ай бұрын
Check Auth code and wifi credentials are correct
@adamsarjana2092
@adamsarjana2092 Жыл бұрын
hey why my device still offline
@TechTrendsShameer
@TechTrendsShameer Жыл бұрын
Check WiFi connection and auth token
@almeespinosawild2196
@almeespinosawild2196 Жыл бұрын
You found any solution? I’m in the same situation
@Ammuxz07
@Ammuxz07 10 ай бұрын
Sir how to change the device offline into online sir
@dr.muhammadsohail3820
@dr.muhammadsohail3820 Жыл бұрын
The led is not connecting to blynk and the led is glowing automatically
@TechTrendsShameer
@TechTrendsShameer Жыл бұрын
Please let me know which pin you connected in ESP8266 board and which pin you mentioned in Blynk -> Datastream.
@prakashshrestha2460
@prakashshrestha2460 Жыл бұрын
same problem
@ngdanger635
@ngdanger635 Ай бұрын
Sir in the code error showing that wifi username and pass not declared in scope
@ngdanger635
@ngdanger635 Ай бұрын
Please help
@iamindiaarmiy8927
@iamindiaarmiy8927 5 ай бұрын
Sir aap se koi help mil sakta hai
@TechTrendsShameer
@TechTrendsShameer 5 ай бұрын
Yes
@TeachMeSomething
@TeachMeSomething 2 жыл бұрын
First view.
@TechTrendsShameer
@TechTrendsShameer 2 жыл бұрын
Thanks Bro
@SALIMkhan-cf4bh
@SALIMkhan-cf4bh 2 жыл бұрын
2 MEANS D4, PLEASE SEND ME WHAT ABOUT D5 AND D6
@TechTrendsShameer
@TechTrendsShameer 2 жыл бұрын
1 -> D5 2 -> D4 3 -> D0 4 -> D2 5 -> D14 6 -> D12
@444-h6w
@444-h6w 2 жыл бұрын
Bro i need the source code Google drive not working
@TechTrendsShameer
@TechTrendsShameer 2 жыл бұрын
Check this please github.com/Tech-Trends-Shameer/Esp-8266-Projects/tree/main/Control-LED-Using-Blynk-IOT
@444-h6w
@444-h6w 2 жыл бұрын
@@TechTrendsShameer working 🤗♥️
@Ojha_Anmol
@Ojha_Anmol 7 ай бұрын
Sir code problem ha plz aap code paste kardona 🤧🤧 discription par code paste kardona to mehar bani hogi sir kyuki kl checking ha
@satreaaji
@satreaaji 2 жыл бұрын
there something wrong with your code
@TechTrendsShameer
@TechTrendsShameer 2 жыл бұрын
Please let me know what's wrong in the code
@satreaaji
@satreaaji 2 жыл бұрын
@@TechTrendsShameer idk, but it wont work, did you recheck your code? Loop is empty
@satreaaji
@satreaaji 2 жыл бұрын
@@TechTrendsShameer nvm, i found it, in your code ledpin d14, but your blynk use d2. Im conversing your code to esp32, at first it wont work. But after change digital pin on blynk, now it worked. Thanks
@TechTrendsShameer
@TechTrendsShameer 2 жыл бұрын
I think you checked the code from the video. You will not able to see the full code in the video screen. Please check the video description for the complete source code.
@TechTrendsShameer
@TechTrendsShameer 2 жыл бұрын
I use ESP 8266 in this project. If you are using other boards or selected other pins, please modify the program.
@hananafif165
@hananafif165 2 жыл бұрын
invalid auth code, please help
@TechTrendsShameer
@TechTrendsShameer 2 жыл бұрын
The auth code will be generated during setup. My code will not work for you. Please follow the steps and generate your own code.
@abbod7198
@abbod7198 9 ай бұрын
You didn’t explain the code
@ECEBESTALWAYS
@ECEBESTALWAYS 2 жыл бұрын
it says d4 not declared in scope... time waste
@TechTrendsShameer
@TechTrendsShameer 2 жыл бұрын
How many hours you wasted ?
@sanjayniranjanbalaji9530
@sanjayniranjanbalaji9530 2 жыл бұрын
@@TechTrendsShameer sir i am getting same error pls help
@sanjayniranjanbalaji9530
@sanjayniranjanbalaji9530 2 жыл бұрын
C:\Users\sanja\AppData\Local\Temp\.arduinoIDE-unsaved2022917-1652-1lgzl4z.blme\sketch_oct17a\sketch_oct17a.ino:18:14: error: 'D4' was not declared in this scope; did you mean 'V4'? 18 | int ledpin = D4; | ^~ | V4 Multiple libraries were found for "BlynkSimpleEsp8266.h" Used: C:\Users\sanja\OneDrive\Documents\Arduino\libraries\Blynk Not used: C:\Users\sanja\OneDrive\Documents\Arduino\libraries\blynk-library-master exit status 1 Compilation error: 'D4' was not declared in this scope; did you mean 'V4'?
@Vaxsas_Ezolt
@Vaxsas_Ezolt Жыл бұрын
Hi i get error on code #include for this line
@hisham5983
@hisham5983 Жыл бұрын
you should setup the esp8266 in arduino ide
Control LED using Arduino IOT Cloud and ESP8266 | Arduino IOT Cloud Projects
5:27
To Brawl AND BEYOND!
00:51
Brawl Stars
Рет қаралды 16 МЛН
Deadpool family by Tsuriki Show
00:12
Tsuriki Show
Рет қаралды 7 МЛН
Creative Justice at the Checkout: Bananas and Eggs Showdown #shorts
00:18
Fabiosa Best Lifehacks
Рет қаралды 35 МЛН
How to control LEDs with Blynk 2.0 | Blynk 2.0 Tutorial
4:55
EDISON SCIENCE CORNER
Рет қаралды 27 М.
Blynk with NodeMCU ESP8266- Web dashboard and Mobile App
24:52
BINARYUPDATES
Рет қаралды 193 М.
Control Light Bulb and Relay using Blynk Mobile App
15:27
BINARYUPDATES
Рет қаралды 36 М.
Making your first project on New Blynk 2.0⚡️
15:23
techiesms
Рет қаралды 204 М.
I’m Never Buying LEDs Again! EASY DIY WLED!
13:11
TechFlow
Рет қаралды 1,3 МЛН
New Blynk 2.0 Project | Led Blink NodeMcu | Blynk App with Arduino
10:56
GADGETS IN DETAILS
Рет қаралды 55 М.
To Brawl AND BEYOND!
00:51
Brawl Stars
Рет қаралды 16 МЛН