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 Controlled Physics Lab Fan Cart

Arduino-Controlled Physics Lab Fan-Cart

A “fan cart” is a roughly constant-force device used in introductory physics labs. It consists of a fan (usually a model airplane propeller on a brushed DC motor) mounted on top of a low-friction cart. Students use it to pretend they’re learning something about force, acceleration, energy, etc. If you’ve ever taken an introductory physics

Arduino-Controlled Physics Lab Fan-Cart Continue Reading

Scroll to Top