Dallas' DS1820 family temperature sensor. For more details see [https://developer.mbed.org/users/hudakz/code/DS1820/wiki/Homepage]

Dependencies:   OneWire

Fork of DS1820 by Zoltan Hudak

Committer:
hudakz
Date:
Thu Mar 26 20:57:59 2015 +0000
Revision:
7:4403a206e78a
Parent:
4:adf4e7972d73
Child:
8:8dfdd1603e4d
Sensor array sample added

Who changed what in which revision?

UserRevisionLine numberNew contents of line
hudakz 0:433af64321d5 1 #ifndef DS1820_H_
hudakz 0:433af64321d5 2 #define DS1820_H_
hudakz 0:433af64321d5 3
hudakz 0:433af64321d5 4 #include <OneWire.h>
hudakz 0:433af64321d5 5
hudakz 0:433af64321d5 6 class DS1820
hudakz 0:433af64321d5 7 {
hudakz 0:433af64321d5 8 OneWire oneWire;
hudakz 0:433af64321d5 9 uint8_t type_s;
hudakz 0:433af64321d5 10 uint8_t data[12];
hudakz 0:433af64321d5 11 uint8_t addr[8];
hudakz 0:433af64321d5 12 float toFloat(uint16_t word);
hudakz 0:433af64321d5 13 public:
hudakz 7:4403a206e78a 14 uint8_t present;
hudakz 7:4403a206e78a 15
hudakz 0:433af64321d5 16 DS1820(PinName pin);
hudakz 0:433af64321d5 17 DS1820(char model, PinName pin);
hudakz 0:433af64321d5 18 bool begin(void);
hudakz 4:adf4e7972d73 19 void setResolution(uint8_t res);
hudakz 0:433af64321d5 20 void startConversion(void);
hudakz 0:433af64321d5 21 float read(void);
hudakz 0:433af64321d5 22 };
hudakz 0:433af64321d5 23 #endif /* DS1820_H_ */