I'm using Arduino UNO and the library WiFi 101.
Simply when I try to upload the Firmware Updater sketch from File -> Examples -> WiFi101 -> Firmware Updater I get this error:
Arduino: 1.8.12 (Linux), Board: "Arduino Uno"
data section exceeds available space in boardSketch uses 9908 bytes (30%) of program storage space. Maximm is 32256 bytes.
Global variables use 2145 bytes (104%) of dynamic memory, leaving -97 bytes for local variables. Maximum is 2048 bytes.
Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size for tips on reducing your footprint.
Error compiling for board Arduino Uno.
This report would have more information with
"Show verbose output during compilation"
option enabled in File -> Preferences.
- The problem is clear which is this sketch needs more than the available memory in Arduino. But how can I solve that?
Thanks