From de712cd340026a0a313b4caef1d7ea6a064a78cb Mon Sep 17 00:00:00 2001 From: AYM1607 Date: Mon, 7 Dec 2020 18:09:08 -0600 Subject: [PATCH] Added credits to Ben Eater --- README.md | 2 ++ arduino_program/arduino_program.ino | 9 +++++++++ 2 files changed, 11 insertions(+) create mode 100644 arduino_program/arduino_program.ino diff --git a/README.md b/README.md index 9dcec7a..56e1f8d 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # eeprom_programmer A very basic EEPROM programmer, compatible with chips with up to 15 address lines. + +##### This project was inspired by and based on [Ben Eater's programmer](https://github.com/beneater/eeprom-programmer) diff --git a/arduino_program/arduino_program.ino b/arduino_program/arduino_program.ino new file mode 100644 index 0000000..95c2b6e --- /dev/null +++ b/arduino_program/arduino_program.ino @@ -0,0 +1,9 @@ +void setup() { + // put your setup code here, to run once: + +} + +void loop() { + // put your main code here, to run repeatedly: + +}