Mercurial > templog
annotate simple_ds18b20.h @ 386:f4f0780708d1
- store settings in eeprom
- change TICK to 6 secs (and fix timing bug)
- measurement memory is used by all sensors
- "awake" command
- avoid float maths calculating vcc
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Tue, 10 Jul 2012 23:48:09 +0800 |
parents | 83c83014e5e3 |
children | 90d1ebb941ab |
rev | line source |
---|---|
318 | 1 #ifndef SIMPLE_DS18B20_H_ |
2 #define SIMPLE_DS18B20_H_ | |
3 #include <stdint.h> | |
326
f6b5941b4c34
Untested - calculate crc in uart_putchar
Matt Johnston <matt@ucc.asn.au>
parents:
318
diff
changeset
|
4 #include <stdio.h> |
318 | 5 |
6 #include "ds18x20.h" | |
7 | |
8 uint8_t simple_ds18b20_start_meas(uint8_t id[]); | |
326
f6b5941b4c34
Untested - calculate crc in uart_putchar
Matt Johnston <matt@ucc.asn.au>
parents:
318
diff
changeset
|
9 void printhex(uint8_t *id, uint8_t n, FILE *stream); |
f6b5941b4c34
Untested - calculate crc in uart_putchar
Matt Johnston <matt@ucc.asn.au>
parents:
318
diff
changeset
|
10 void printhex_byte( const unsigned char b, FILE *stream ); |
318 | 11 uint8_t simple_ds18b20_read_decicelsius( uint8_t id[], int16_t *decicelsius ); |
381
83c83014e5e3
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
326
diff
changeset
|
12 uint8_t simple_ds18b20_read_raw( uint8_t id[], uint16_t *reading ); |
318 | 13 uint8_t simple_ds18b20_read_all(); |
14 | |
15 #endif // SIMPLE_DS18B20_H_ |