If you are wondering how much memory EEPROM code consumes: On a Teensy 3.2 Airduino IDE 1.8.13 #include EEPROM.put, EEPROM.get Compiled to 11140 bytes Removing #include EEPROM.put, EEPROM.get Compiled to 7016 bytes
This is the info I was looking for. It is well presented with one exception. I had to type the program in from the info in the video. 2 hours later, I am still getting some compile errors and sorting it out. Many of the tutorial I really like have the code that I can copy and paste. It seems I don't type what is on the screen so well. Thanks for the video.
If you are wondering how much memory EEPROM code consumes:
On a Teensy 3.2 Airduino IDE 1.8.13
#include
EEPROM.put,
EEPROM.get
Compiled to 11140 bytes
Removing
#include
EEPROM.put,
EEPROM.get
Compiled to 7016 bytes
Great job,
I always learn something new from you.
Thanks
Glad to hear it!
This is the info I was looking for. It is well presented with one exception. I had to type the program in from the info in the video. 2 hours later, I am still getting some compile errors and sorting it out. Many of the tutorial I really like have the code that I can copy and paste. It seems I don't type what is on the screen so well. Thanks for the video.
Nice video, thanks. How much of the main program memory is used up by invoking the EEPROM?
It looks like around 4K for 1 put and 1 get
@@KrisKasprzak Thanks