annotate simple_ds18b20.h @ 321:df7384336798
Add shutdown handling, print sensors in "fetch" output
author |
Matt Johnston <matt@ucc.asn.au> |
date |
Sun, 20 May 2012 22:16:56 +0800 |
parents |
31199b2941f6 |
children |
878be5e353a0 |
rev |
line source |
318
|
1 #ifndef SIMPLE_DS18B20_H_ |
|
2 #define SIMPLE_DS18B20_H_ |
|
3 #include <stdint.h> |
|
4 |
|
5 #include "ds18x20.h" |
|
6 |
|
7 uint8_t simple_ds18b20_start_meas(uint8_t id[]); |
|
8 void printhex(uint8_t *id, uint8_t n); |
|
9 void printhex_byte( const unsigned char b ); |
|
10 uint8_t simple_ds18b20_read_decicelsius( uint8_t id[], int16_t *decicelsius ); |
|
11 uint8_t simple_ds18b20_read_all(); |
|
12 |
|
13 #endif // SIMPLE_DS18B20_H_ |