More on Arduino
Up one levelArduino hardware and software information of note.
- Memory Structure of Arduino — by Dr. William L. Honig — last modified 2015-02-20 10:16 PM
- Three kinds of memory. See link for PROGMEM to place variable data in program memory (flash) instead of using up static RAM
- PROGMEM Variable Modifier — by Dr. William L. Honig — last modified 2015-02-20 10:18 PM
- How to store and use Flash memory for data with Arduino. See link for details of how to use the #include <avr/pgmspace.h> items
- AVR prmspace declarations — by Dr. William L. Honig — last modified 2015-02-20 10:20 PM
- See the methods and types in #include <avr/pgmspace.h>. Important to work with flash memory for variables
- Arduino Wiki Space — by Dr. William L. Honig — last modified 2015-01-28 06:16 PM
- Another source for helpful information
- Arduino Duemilanove Specification — by Dr. William L. Honig — last modified 2015-04-06 04:05 PM
- One of the boards we have in stock
- Arduino Uno Specification — by Dr. William L. Honig — last modified 2015-04-06 04:07 PM
- Another model we use
- Arduino Tutorials — by Dr. William L. Honig — last modified 2015-04-06 04:10 PM
- A large set of examples for software and hardware.
- Deeper into Arduino Software / Hardware Interface — by Dr. William L. Honig — last modified 2015-04-15 02:11 PM
- What is really going on when you control the hardware? See this good description - getting underneath the code in the simple Blink program. Here is how you really touch the hardware.