I just cloned this project, opened k3ng_rotator_controller.ino and tried to build, but I get this error:
/home/steen/github/k3ng_rotator_controller/k3ng_rotator_controller/k3ng_rotator_controller.ino:1103:20: fatal error: EEPROM.h: No such file or directory
compilation terminated.
exit status 1
Error compiling for board Arduino Uno.
IDE: Tried with both 1.8.19 and 2.0.4
Board: Arduino Uno Rev3e
Programmer: AVRISP mkII
I've tried changing #include <EEPROM.h> in line 1103 to #include <avr/EEPROM.h>, but it made no difference, since avr/EEPROM.h doesn't exist.
I also tried downloading EEPROM.h from https://github.com/arduino/ArduinoCore-avr/blob/master/libraries/EEPROM/src/EEPROM.h and placing it in the directory, but that file itself contains a reference to avr/EEPROM.h, so that didn't make much difference either.
I just cloned this project, opened k3ng_rotator_controller.ino and tried to build, but I get this error:
IDE: Tried with both 1.8.19 and 2.0.4 Board: Arduino Uno Rev3e Programmer: AVRISP mkII I've tried changing
#include <EEPROM.h>
in line 1103 to#include <avr/EEPROM.h>
, but it made no difference, sinceavr/EEPROM.h
doesn't exist. I also tried downloadingEEPROM.h
from https://github.com/arduino/ArduinoCore-avr/blob/master/libraries/EEPROM/src/EEPROM.h and placing it in the directory, but that file itself contains a reference toavr/EEPROM.h
, so that didn't make much difference either.