Welcome to Hackster!
Hackster is a community dedicated to learning hardware, from beginner to pro. Join us, it's free!
tinkerer9
Published © GPL3+

Toggle an LED with the RESET button for quick use cases

Ever need to turn an LED on and off but have only an Arduino? Look no further

BeginnerProtip394
Toggle an LED with the RESET button for quick use cases

Things used in this project

Hardware components

Arduino UNO
Arduino UNO
×1
LED (generic)
LED (generic)
Or any other load. Make sure to use a resistor if needed!
×1

Software apps and online services

Arduino IDE
Arduino IDE

Story

Read more

Schematics

Circuit Diagram

Code

Arduino Code

Arduino
#include <EEPROM.h>

#define LED_PIN 13
#define EEPROM_ADDRESS 0

void setup(){
  pinMode(LED_PIN, OUTPUT);

  Serial.begin(9600);

  if (EEPROM.read(EEPROM_ADDRESS) == 0){
    EEPROM.put(EEPROM_ADDRESS, 1);
    digitalWrite(LED_PIN, HIGH);
    Serial.println("LED ON");
  } else {
    EEPROM.put(EEPROM_ADDRESS, 0);
    digitalWrite(LED_PIN, LOW);
    Serial.println("LED OFF");
  }
}

void loop(){}

Credits

tinkerer9
2 projects • 0 followers
Contact

Comments

Please log in or sign up to comment.