Hi! Can you please help me with my code? I attach a copy below.(Using Arduino Uno
IDE 1.6.6)
Compiling error:
Arduino\libraries\Tiny_altimeter_v1_04\Battery.c:8:9: error: variable 'Battery' must be const in order to be put into read-only section by means of 'attribute((progmem))'
Groove is saying: the compiler tells you that the variable "Battery" in the file "Battery.c" has been declared with the keyword 'PROGMEM', but you forgot to add the 'const' to it.
Every 'PROGMEM' variable needs to be 'const', that's all.