Mercurial > templog
view simple_ds18b20.h @ 80:1e2068c5413a
- 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 | ca08442635ca |
children | 90d1ebb941ab |
line wrap: on
line source
#ifndef SIMPLE_DS18B20_H_ #define SIMPLE_DS18B20_H_ #include <stdint.h> #include <stdio.h> #include "ds18x20.h" uint8_t simple_ds18b20_start_meas(uint8_t id[]); void printhex(uint8_t *id, uint8_t n, FILE *stream); void printhex_byte( const unsigned char b, FILE *stream ); uint8_t simple_ds18b20_read_decicelsius( uint8_t id[], int16_t *decicelsius ); uint8_t simple_ds18b20_read_raw( uint8_t id[], uint16_t *reading ); uint8_t simple_ds18b20_read_all(); #endif // SIMPLE_DS18B20_H_