My first Arduino project – Pulse

OK, so it’s not really a project. And the circuit is just that used in the ARDX manual for CIRC-07. But the program is mine! It’s not very exciting, but then I expect first projects rarely are. If you can’t tell from the video, the LED pulses and the two buttons control the speed of the pulse. int ledPin = 9; int inputPin1 = 3; int inputPin2 = 2; int val = 0; void setup() { pinMode(ledPin, OUTPUT); pinMode(inputPin1, INPUT); …