arduino: remote control lamp
#include <IRremote.h> #include <IRremoteInt.h> const int receiver = 11; // pin 1 of IR receiver to Arduino digital pin 11 ...
the secret of eureka
arduino: remote control lamp
#include <IRremote.h> #include <IRremoteInt.h> const int receiver = 11; // pin 1 of IR receiver to Arduino digital pin 11 ...
arduino: mottion following using 2 ultrasonic sensor
#include <Servo.h> #include <LiquidCrystal.h> LiquidCrystal lcd(2,3,4,5,6,7); Servo myservo; const int Lin = 10, Rin = 12...
arduino: voice control lamp android
#include <SoftwareSerial.h> SoftwareSerial myserial(10, 11); // RX, TX String voice; int led1 = 2, //Connect LED 1 To Pin #2 led2 = ...