Challenges

From IoT with AME
Revision as of 14:58, 3 July 2017 by Ctreber (talk | contribs)
Jump to navigation Jump to search

Home

Challenges - How to Overcome Hardware and Software Limitations

The Arduino hardware is pretty limited - you get 32kB of unmodifiable (at run-time) flash memory for the program, and 2kB of modifiable SRAM memory for variables. That's it.

This is a challenge to your software you have to address at compile time. During operations you may want to change the configuration of the device. If you want do to that with re-programming the chip, you need to use an interface of some kind (wireless, SPI/ I2C, or SD card).

  • Updating device configuration (ie, MQTT/ WLAN)
  • Updating device code

Home