Muftia (15650016)
Published © CC BY

Smart Lamp Manager

Smart Lamp Manager ini dirancang dengan Nodemcu Esp8266 untuk mengatur intensitas kebutuhan cahaya pada lampu sesuai kebutuhan.

IntermediateProtip12 hours354
Smart Lamp Manager

Things used in this project

Hardware components

NodeMCU ESP8266 Breakout Board
NodeMCU ESP8266 Breakout Board
×1
Breadboard (generic)
Breadboard (generic)
×1
Jumper wires (generic)
Jumper wires (generic)
×1
LED (generic)
LED (generic)
×1
USB-A to Micro-USB Cable
USB-A to Micro-USB Cable
×1

Software apps and online services

Arduino IDE
Arduino IDE
Blynk
Blynk

Story

Read more

Schematics

nodemcu_pKKWgqlHrQ.png

Code

Code smart Lamp Manager

Arduino
#define BLYNK_PRINT Serial
#include <ESP8266WiFi.h>
#include <BlynkSimpleEsp8266.h>

// You should get Auth Token in the Blynk App.
// Go to the Project Settings (nut icon).
char auth[] = "117daff3cec84b0996184d4a633067c1";

// Your WiFi credentials.
// Set password to "" for open networks.
char ssid[] = "Redmi4x";
char pass[] = "12345";

void setup()
{
  // Debug console
  Serial.begin(9600);

  Blynk.begin(auth, ssid, pass);
}

void loop()
{
  Blynk.run();
}

Credits

Muftia (15650016)

Muftia (15650016)

0 projects • 1 follower

Comments

Add projectSign up / Login