Home Automation Project Ideas

Arduino Internet Controlled Desk Lamp

Arduino Internet Controlled Desk Lamp

Step 1: What You’ll need A linux web-server with PHP, an arduino, a relay and some other components. Step 2: Upload your code to the arduino Upload the following code to your arduino: void setup(){ Serial.begin(9600); } void loop() { if (Serial.available() > 0) { char inByte = Serial.read(); if(inByte == ‘1’){ digitalWrite(13,HIGH); } else if(inByte == ‘0’){ […]

Arduino Internet Controlled Desk Lamp Continue Reading

Arduino Magic Lamp Card Box

Homemade Magic Lamp Card Box using an Arduino

A robot is a virtual or mechanical artificial agent. In practice, it is usually an electro-mechanical machine which is guided by computer or electronic programming, and is thus able to do tasks on its own (http://en.wikipedia.org/wiki/Robot). Well, today you will learn exactly how to build a Homemade Magic Lamp Card Box. Really, this is two instructables

Homemade Magic Lamp Card Box using an Arduino Continue Reading

Scroll to Top