Mercurial > pihelp
comparison simple_ds18b20.h @ 0:8705acff2494
lots of stuff
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Sat, 01 Jun 2013 01:38:42 +0800 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:8705acff2494 |
---|---|
1 #ifndef SIMPLE_DS18B20_H_ | |
2 #define SIMPLE_DS18B20_H_ | |
3 #include <stdint.h> | |
4 #include <stdio.h> | |
5 | |
6 #include "ds18x20.h" | |
7 | |
8 uint8_t simple_ds18b20_start_meas(uint8_t id[]); | |
9 void printhex(uint8_t *id, uint8_t n, FILE *stream); | |
10 void printhex_byte( const unsigned char b, FILE *stream ); | |
11 uint8_t simple_ds18b20_read_decicelsius( uint8_t id[], int16_t *decicelsius ); | |
12 int16_t ds18b20_raw16_to_decicelsius(uint16_t measure); | |
13 uint8_t simple_ds18b20_read_raw( uint8_t id[], uint16_t *reading ); | |
14 uint8_t simple_ds18b20_read_all(); | |
15 | |
16 #endif // SIMPLE_DS18B20_H_ |