Simple cpp wrapper of a ds18b20, onewire 'c' library. Supports multiple sensors.

Dependencies:   mbed

Dependents:   LPC11U68_DS18B20Sensor

Fork of DS18B20Sensor by Steve Spence

Committer:
Bongjun
Date:
Fri Jul 04 00:08:44 2014 +0000
Revision:
5:0bcc4e42fec0
Parent:
0:1449f126b241
added comments

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jsteve 0:1449f126b241 1 #ifndef _CRC8_
jsteve 0:1449f126b241 2 #define _CRC8_
jsteve 0:1449f126b241 3 uint8_t crc8 (uint8_t* data_in, uint16_t number_of_bytes_to_read);
jsteve 0:1449f126b241 4 #endif