Skip to main content

Color changing LED Strip with BLYNK app

Hello Sailors! Have you ever thought to own a color changing LED strip, so you could change it's color based on your mood, yes I am taking about Mood Light. Today,  we are back with one more interesting IOT project where are going to create a mood light(LED strip) with BLYNK app. Sounds Romantic, hmm!

Let's Rock' n Roll.

Overview:

BLYNK app will send message to your NodeMCU over Wifi, these signals will be translated by NodeMCU and LED strip will change color as received in the message.

Things we need:

Hardware:

Software:

Circuit:

Connections:

  • D5 pin is connected to TIP 120 NPN(U1) transistor's Base pin.
  • D6 pin to Base pin of U2.
  • D7 pin to Base pin of U3.
  • U1, U2 and U3's Collector pins are connected to respective LED color pin
  • U1, U2 and U3's Emitter pins are grounded. Grounded, That's sad!
  • NodeMCU is connected to 3.3 Volt power supply.
  • LED strip's power PIN is connected to 12V supply.
Now, we are done with the circuit of our Mood Light!

BLYNK app Setup on phone:

  • Create a New Project in BLYNK app.
  • Write Project Name and Select ESP8266 or NodeMCU from dropdown.
  • An AUTH token will be sent to your registered email, note this down.
  • Tap on the screen and add a ZERGBA WIDGET on screen.
  • Tap on the Widget and select Digital PIN 5 for RED, D6 for GREEN and D7 for GREEN, rest unchanged.
Note: This will change colors only over WIFI not over internet.
Color changing LED strip as almost ready, just a few steps to go.

Code:

Working with BLYNK is so simple that we only need to add our AUTH ID(noted above), Wifi SSID and Password in the code and upload it to NodeMCU using Arduino IDE. In the code, we do not need to setup our pins this is already done by BLYNK in their library. If you do not have BLYNKEsp8266 library, download the BLYNKEsp library from Sketch menu --> Include Library -->Manage Libraries. Search for the BLYNK and install it. Upload the code to your NodeMCU or ESP8266 and device will be displayed online on your BLYNK app.

Click Play button on top right of your app and start changing colors of your light.
Oh yeah!

Your precious comments and suggestions are always welcome, feel free.
Till then, Happy IOTing.

Comments

Popular posts from this blog

Build a REST API using Node and Express.js

Hello Sailors, if you are a programmer you would have heard about APIs or have developed APIs in JAVA, Python or any language. Today, we are going to build an API which sends random nutrition tips as response, with Nodejs and Express.js. Sounds interesting! What is an API? API stands for Application Program Interface. Ho ho ho! this just made my life, what an explanation! Well, an API is a set of functions and procedures that allow you to create applications which access the data of an application or service. Why do we need an API? When we want to build an android application, a web application and a desktop application because there are different type of users, so instead of building separate logic for all of these applications, we will build an API and all these applications will consume this API and serves the purpose. Here's another example : You have built a printer which prints great on paper but still no one buys it because you do not provide them any tool ...

Setup Mosquitto MQTT broker in Windows

MQTT (Message Queueing Telemetry Transport) is a Client Server messaging transport protocol. It provides a lightweight method of carrying messages using a publish/subscribe model. The pub/sub model being lighweight makes it suitable for IOT messaging with low power devices, sensors, phones or microcontrollers. How MQTT works? MQTT follows publish/subscribe model which is alternative to server-client model where client communicates directly with server. The pub/sub model defines the client which send a message(publisher) to another client which received that message(subscriber). The subscriber and publisher are unaware of the presence of each other. The main part, which we call the Broker, which our both publisher and subscriber are aware of, filters all the coming messages and distributes them respectively. Now we know what is MQTT and how it works. Let's dive in to set this up on Windows 7/8/10. Mosquitto: This is an open source message broker used for handling lightwe...

Karna - The hapless Mahabharata Warrior

“Karma is a bitch.”  These must be the truest words ever spoken. Karna was so unfortunate because of his Karma. In his previous birth, Karna was a demon by name “Dambhodbhava”. He was an Asura, who like every other asura, wanted to be powerful and had a ridiculous desire to become Immortal. So, one fine day, he started to pray for Sun God “Surya Deva”. Lord Surya was impressed by his devotion and intensity of his “ Tapas  (Deep meditation)” and asked him what his desire was. Dambhodbhava who was greedy for power asked Surya to grant him the one boon no one could grant i.e. Immortality. “Everything that takes birth must die” . This was the First Law Of the Universe and Surya told the asura, he can ask for anything except Immortality. Dambodhbhava was crestfallen as he thought that all the Tapas was a waste of time. Dambodhbhava unwilling to give up, was lost in thought for a long time. He was determined to go home immortal one way or the other. So, he ...