Ideas

Power Supply unit for arduino power and breadboard

Power Supply unit for arduino power and breadboard using arduino

how you can take a computer u hv old (power supply unit) and turn it into a power supply that will power your Arduino and give you all the amperage  you need as well as your standard 3.3 volts, 5 volts, and 12 volts for any accessories/electronics used on your breadboard And arduino power ,led […]

Power Supply unit for arduino power and breadboard using arduino Continue Reading

Arduino weather station part 2

Arduino weather station part 2 using arduino

Sometimes I just do not have time to connect to the internet and check current weather conditions. This is the reason why I made this indoor LCD weather display based on Atmega328 Arduino MCU. The circuit board consists of two LP2950 voltage regulators, MCU, four buttons, ENC28J60 Ethernet module and LCD12864 graphic display module. The

Arduino weather station part 2 using arduino Continue Reading

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

Scroll to Top