Arduino Light control Tutorial
How to control a lamp with and arduino
resources for you:
Arduino were to get and learning code: http://www.arduino.cc/
Seed studio relay shield: http://www.seeedstudio.com/depot/relay-shield-v20-p-1376.html?cPath=132_134
example code: void setup() {
pinMode(7,OUTPUT);
}
void loop() {
digitalWrite(7,HIGH);
delay(3000);
digitalWrite(7,LOW);
delay(3000);
}"
Ajouter un commentaire