Postingan

Menampilkan postingan dari Februari, 2016

LED flasher using Arduino Nano and 132 LEDs

Gambar
LED chaser using Arduino Nano and 132 LEDs. Parts list: 1-Aluminum plate with 0.7mm thickness 2-Drill bit 5.2 mm(for 5mm LEDs) https://goo.gl/5KMRg6 3-LEDs 5mm blue, white, red, green, yellow https://goo.gl/SPCY5o 4-Black color spray 5-100 ohm resistors (Resistor kit https://goo.gl/p4JvQY ) 6-Connecting Wires https://goo.gl/BVC3pM 7-Arduino Nano https://goo.gl/Gox61E 8-Power supply 5v 1 to 2A https://goo.gl/HJwdof   Please subscribe to my YouTube channel here:  https://www.youtube.com/c/EngMousaalkaabi?sub_confirmation=1 Code: void setup(){   pinMode(2, OUTPUT);   pinMode(3, OUTPUT);   pinMode(4, OUTPUT);   pinMode(5, OUTPUT);   pinMode(6, OUTPUT);   pinMode(7, OUTPUT);   pinMode(8, OUTPUT);   pinMode(9, OUTPUT);   pinMode(10, OUTPUT);   pinMode(11, OUTPUT);   pinMode(12, OUTPUT);   pinMode(13, OUTPUT); } void loop(){     digitalWrite(4, HIGH);   delay(100);   digitalWrite(4, LOW);   delay(100);   digitalWrite(4, HIGH);   delay(100);   digitalWrite(4, LOW);   delay(100);   digitalWrit

220v avoidance switch using FC-51 without arduino

Gambar
There are some arduino modules that can used without arduino board, such as motion sensor module, light sensor module, etc. Avoidance sensor module also can use without arduino board. here i used it for make a simple switch for AC or DC load. you can use it for kitchen cabinets light for example, so when you stay near each cabinet part the light above that part run, i think that is amazing idea for optimizing power consumption and i think there are not similar commercial in electric markets. The sensing distance range is between 2 to 30cm. Avoidance sensor almost is similar to ultrasonic sensor but with lower sensing distance range and unfortunately high sensitivity to sun ray, also it can't calculate the distance and just sense existing an object in the way so usually used in robots for inhibit collision with wall or other objects.