No description
Find a file
2018-03-13 22:07:17 +01:00
component.mk Create component.mk 2016-10-06 17:30:18 +02:00
ds18b20.c Renaming methods to avoid collisions 2017-11-10 15:25:55 -07:00
ds18b20.h Renaming methods to avoid collisions 2017-11-10 15:25:55 -07:00
LICENSE Added License text #3 2018-03-13 22:07:17 +01:00
README.md Update README.md 2017-11-10 23:49:30 +01:00

Simple library for single DS18B20 on ESP32

#Usage Put ds18b20.c and ds18b20.h in the same directory as your project code.
Include library with #include ds18b20.h
To initialize library, call ds18b20_init(GPIO);
To get temperature(in Celcius), call ds18b20_get_temp();
For example, see this code.