You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
511 B
25 lines
511 B
#ifndef DS1624_CONFIG
|
|
#define DS1624_CONFIG
|
|
/**
|
|
* Address byte selection
|
|
* Select 0 for low and 1 for high
|
|
**/
|
|
#define DS1624_A0 0
|
|
#define DS1624_A1 0
|
|
#define DS1624_A2 0
|
|
|
|
/**
|
|
* Comment this out if you don't want the
|
|
* init function to account for the ~1S startup
|
|
* delay for the first temperature sample!
|
|
**/
|
|
#define DS1624_HANDLE_BOOT_DELAY
|
|
|
|
/**
|
|
* Uncomment this to support reading and writing
|
|
* to the 256 bytes of EEPROM on the DS1624
|
|
**/
|
|
#define DS1624_USE_EEPROM
|
|
|
|
#endif
|