| 4 | | // include types & constants of Wiring core API |
| 5 | | #include <WConstants.h> |
| 6 | | #include <inttypes.h> |
| 7 | | |
| 8 | | // include types & constants of Wire ic2 lib |
| 9 | | #include <Wire/Wire.h> |
| 10 | | |
| 11 | | /** |
| 12 | | * Comment this out if you don't want the |
| 13 | | * init function to account for the ~1S startup |
| 14 | | * delay for the first temperature sample! |
| 15 | | **/ |
| 16 | | #define DS1624_HANDLE_BOOT_DELAY |
| 17 | | |
| 18 | | /** |
| 19 | | * Address byte selection |
| 20 | | * Select 0 for low and 1 for high |
| 21 | | **/ |
| 22 | | #define DS1624_A0 0 |
| 23 | | #define DS1624_A1 0 |
| 24 | | #define DS1624_A2 0 |
| | 4 | #include "../global.h" |
| | 5 | #include "../configs/ds1624/ds1624.h" |