easy:turn on led with a button the code is in the Description
the code: #define ACTIVATED LOW const int buttonPin = 2; const int ledPin = 13; int buttonState = 0; void setup() { pinMode(ledPin, OUTPUT); pinMode(buttonPin, INPUT); digitalWrite(buttonPin,HIGH); }
hello