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: + +}