Add the following snippet to your HTML:<iframe frameborder='0' height='385' scrolling='no' src='https://www.hackster.io/MakerRobotics/arduino-chip-atmega328p-on-the-protoboard-ebb706/embed' width='350'></iframe>
A chip was removed from the control unit of an Arduino Uno and placed on an ATmega328P protoboard. A fun project.
Read up about this project on
int led=13; void setup() { pinMode(led, OUTPUT); } void loop() { digitalWrite(led, HIGH); delay(1000); digitalWrite(led, LOW); delay(1000); }
Please log in or sign up to comment.
Comments
Please log in or sign up to comment.