Mercurial > templog
annotate old/simple_ds18b20.h @ 639:89818a14648b rust tip
- switch to using anyhow for errors, surf for http
runs but surf has problems
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Thu, 28 Nov 2019 23:57:00 +0800 |
parents | 11a1b59b0624 |
children |
rev | line source |
---|---|
12 | 1 #ifndef SIMPLE_DS18B20_H_ |
2 #define SIMPLE_DS18B20_H_ | |
3 #include <stdint.h> | |
20
878be5e353a0
Untested - calculate crc in uart_putchar
Matt Johnston <matt@ucc.asn.au>
parents:
12
diff
changeset
|
4 #include <stdio.h> |
12 | 5 |
6 #include "ds18x20.h" | |
7 | |
8 uint8_t simple_ds18b20_start_meas(uint8_t id[]); | |
20
878be5e353a0
Untested - calculate crc in uart_putchar
Matt Johnston <matt@ucc.asn.au>
parents:
12
diff
changeset
|
9 void printhex(uint8_t *id, uint8_t n, FILE *stream); |
878be5e353a0
Untested - calculate crc in uart_putchar
Matt Johnston <matt@ucc.asn.au>
parents:
12
diff
changeset
|
10 void printhex_byte( const unsigned char b, FILE *stream ); |
12 | 11 uint8_t simple_ds18b20_read_decicelsius( uint8_t id[], int16_t *decicelsius ); |
115 | 12 int16_t ds18b20_raw16_to_decicelsius(uint16_t measure); |
75
ca08442635ca
report raw ds18b20 values instead
Matt Johnston <matt@ucc.asn.au>
parents:
20
diff
changeset
|
13 uint8_t simple_ds18b20_read_raw( uint8_t id[], uint16_t *reading ); |
12 | 14 uint8_t simple_ds18b20_read_all(); |
15 | |
16 #endif // SIMPLE_DS18B20_H_ |