Shield Code 6.0
|
Provides a library to interact with Microchip's AT25M02 chip. This treats the chip as a circular queue that will not overwrite it's data. More...
#include "Arduino.h"
#include "SPI.h"
Go to the source code of this file.
Classes | |
class | AT25M02 |
Interfaces with the AT25M02 EEPROM chip. More... | |
Enumerations | |
enum | Command { READ_STATUS = 0x05 , LOW_PWR_WRITE_POLL = 0x05 , WRITE_ENABLE = 0x06 , WRITE_DISABLE = 0x04 , WRITE_STATUS = 0x01 , READ = 0x03 , WRITE_BYTE = 0x02 , WRITE_PAGE = 0x02 } |
Commands for the AT25M02 chip. Pulled from the data sheet for this chip. All commands are MSB first. More... | |
Provides a library to interact with Microchip's AT25M02 chip. This treats the chip as a circular queue that will not overwrite it's data.
Definition in file AT25M02.hpp.
enum Command |
Commands for the AT25M02 chip. Pulled from the data sheet for this chip. All commands are MSB first.
Enumerator | |
---|---|
READ_STATUS | |
LOW_PWR_WRITE_POLL | |
WRITE_ENABLE | |
WRITE_DISABLE | |
WRITE_STATUS | |
READ | |
WRITE_BYTE | |
WRITE_PAGE |
Definition at line 18 of file AT25M02.hpp.