Harsh Dethe
Published © CC BY-NC-SA

Home Automation Using RemoteMe and Arduino Remote LITE App

Learn how to control devices over internet using Arduino and Android.

IntermediateFull instructions provided1 hour1,030
Home Automation Using RemoteMe and Arduino Remote LITE App

Things used in this project

Hardware components

NodeMCU ESP8266
×1
Relay
×1
Breadboard (generic)
Breadboard (generic)
×1

Software apps and online services

Arduino IDE
Arduino IDE
Arduino Remote LITE
RemoteMe.org

Story

Read more

Code

arduino.ino

Arduino
Error opening file.

Code snippet #2

Plain text
void onRELAY_01Change(boolean b)
{
    Serial.printf("onRELAY_01Change : b : %d\n", b);
    if(b == 1) 
    {
        digitalWrite(Relay1, HIGH);
    }
    else if(b == 0)
    {
       digitalWrite(Relay1, LOW);
    }
 }

Credits

Harsh Dethe
30 projects • 71 followers
Electronics hobbyist, AI Enthusiast. I like to play with technology.

Comments