Mercurial > templog
view simple_ds18b20.h @ 14:426fb44ece3f
Lots of it works now.
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Sun, 20 May 2012 00:36:52 +0800 |
parents | 3c27bfbd7f3a |
children | 878be5e353a0 |
line wrap: on
line source
#ifndef SIMPLE_DS18B20_H_ #define SIMPLE_DS18B20_H_ #include <stdint.h> #include "ds18x20.h" uint8_t simple_ds18b20_start_meas(uint8_t id[]); void printhex(uint8_t *id, uint8_t n); void printhex_byte( const unsigned char b ); uint8_t simple_ds18b20_read_decicelsius( uint8_t id[], int16_t *decicelsius ); uint8_t simple_ds18b20_read_all(); #endif // SIMPLE_DS18B20_H_