Skip to content

Commit

Permalink
added note on PROGMEM usage
Browse files Browse the repository at this point in the history
  • Loading branch information
jmalins committed Oct 6, 2017
1 parent 51d019b commit 834eed1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion animals.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
/**
* List of animals from wikipedia used to provide easy to remember
* WIFI SSID names
* WIFI SSID names.
*
* Store in PROGMEM (FLASH) to conserve precious space on the heap (RAM):
* http://esp8266.github.io/Arduino/versions/2.3.0/doc/reference.html#progmem
*/

const char animal1[] PROGMEM = "aardvark";
Expand Down

0 comments on commit 834eed1

Please sign in to comment.