2016-03-17 23:03:46 +00:00
|
|
|
/* ds18b20_onewire.c - Retrieves readings from one or more DS18B20 temperature
|
|
|
|
* sensors, and prints the results to stdout.
|
2016-02-18 17:42:50 +00:00
|
|
|
*
|
|
|
|
* This sample code is in the public domain.,
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "FreeRTOS.h"
|
|
|
|
#include "task.h"
|
2016-03-17 23:03:46 +00:00
|
|
|
#include "esp/uart.h"
|
2016-02-18 17:42:50 +00:00
|
|
|
|
|
|
|
#include "ds18b20/ds18b20.h"
|
|
|
|
|
2016-03-17 23:03:46 +00:00
|
|
|
#define SENSOR_GPIO 13
|
|
|
|
#define MAX_SENSORS 8
|
|
|
|
#define RESCAN_INTERVAL 8
|
|
|
|
#define LOOP_DELAY_MS 250
|
|
|
|
|
|
|
|
void print_temperature(void *pvParameters) {
|
|
|
|
ds18b20_addr_t addrs[MAX_SENSORS];
|
|
|
|
float temps[MAX_SENSORS];
|
|
|
|
int sensor_count;
|
2016-02-18 17:42:50 +00:00
|
|
|
|
2016-03-17 23:03:46 +00:00
|
|
|
// There is no special initialization required before using the ds18b20
|
|
|
|
// routines. However, we make sure that the internal pull-up resistor is
|
|
|
|
// enabled on the GPIO pin so that one can connect up a sensor without
|
|
|
|
// needing an external pull-up (Note: The internal (~47k) pull-ups of the
|
|
|
|
// ESP8266 do appear to work, at least for simple setups (one or two sensors
|
|
|
|
// connected with short leads), but do not technically meet the pull-up
|
|
|
|
// requirements from the DS18B20 datasheet and may not always be reliable.
|
|
|
|
// For a real application, a proper 4.7k external pull-up resistor is
|
|
|
|
// recommended instead!)
|
|
|
|
|
|
|
|
gpio_set_pullup(SENSOR_GPIO, true, true);
|
|
|
|
|
2016-02-18 17:42:50 +00:00
|
|
|
while(1) {
|
2016-03-17 23:03:46 +00:00
|
|
|
// Every RESCAN_INTERVAL samples, check to see if the sensors connected
|
|
|
|
// to our bus have changed.
|
|
|
|
sensor_count = ds18b20_scan_devices(SENSOR_GPIO, addrs, MAX_SENSORS);
|
2016-02-18 17:42:50 +00:00
|
|
|
|
2016-03-17 23:03:46 +00:00
|
|
|
if (sensor_count < 1) {
|
|
|
|
printf("\nNo sensors detected!\n");
|
|
|
|
} else {
|
|
|
|
printf("\n%d sensors detected:\n", sensor_count);
|
|
|
|
// If there were more sensors found than we have space to handle,
|
|
|
|
// just report the first MAX_SENSORS..
|
|
|
|
if (sensor_count > MAX_SENSORS) sensor_count = MAX_SENSORS;
|
2016-02-18 17:42:50 +00:00
|
|
|
|
2016-03-17 23:03:46 +00:00
|
|
|
// Do a number of temperature samples, and print the results.
|
|
|
|
for (int i = 0; i < RESCAN_INTERVAL; i++) {
|
|
|
|
ds18b20_measure_and_read_multi(SENSOR_GPIO, addrs, sensor_count, temps);
|
|
|
|
for (int j = 0; j < sensor_count; j++) {
|
|
|
|
// The DS18B20 address is a 64-bit integer, but newlib-nano
|
|
|
|
// printf does not support printing 64-bit values, so we
|
|
|
|
// split it up into two 32-bit integers and print them
|
|
|
|
// back-to-back to make it look like one big hex number.
|
|
|
|
uint32_t addr0 = addrs[j] >> 32;
|
|
|
|
uint32_t addr1 = addrs[j];
|
|
|
|
float temp_c = temps[j];
|
|
|
|
float temp_f = (temp_c * 1.8) + 32;
|
|
|
|
printf(" Sensor %08x%08x reports %f deg C (%f deg F)\n", addr0, addr1, temp_c, temp_f);
|
|
|
|
}
|
|
|
|
printf("\n");
|
|
|
|
|
|
|
|
// Wait for a little bit between each sample (note that the
|
|
|
|
// ds18b20_measure_and_read_multi operation already takes at
|
|
|
|
// least 750ms to run, so this is on top of that delay).
|
|
|
|
vTaskDelay(LOOP_DELAY_MS / portTICK_RATE_MS);
|
|
|
|
}
|
2016-02-18 17:42:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-17 23:03:46 +00:00
|
|
|
void user_init(void) {
|
2016-02-18 17:42:50 +00:00
|
|
|
uart_set_baud(0, 115200);
|
|
|
|
|
2016-10-21 09:40:36 +00:00
|
|
|
xTaskCreate(&print_temperature, "print_temperature", 256, NULL, 2, NULL);
|
2016-02-18 17:42:50 +00:00
|
|
|
}
|
|
|
|
|