ESP32_ChinaDieselHeater_Con.../lib/esp32DHT/examples/DHT22/DHT22.ino
2019-09-15 12:55:02 +10:00

53 lines
1.6 KiB
C++

/*
Copyright 2018 Bert Melis
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include <Arduino.h>
#include <Ticker.h>
#include <esp32DHT.h>
Ticker ticker;
DHT22 sensor;
// DHT11 sensor; // DHT11 also works!
void readDHT() {
sensor.read();
}
void setup() {
Serial.begin(74880);
sensor.setup(23); // pin 23 is DATA, RMT channel defaults to channel 0 and 1
sensor.onData([](float humidity, float temperature) {
Serial.printf("Temp: %g°C\nHumid: %g%%\n", temperature,humidity);
});
sensor.onError([](uint8_t error) {
Serial.printf("Sensor error: %s", sensor.getError());
});
ticker.attach(30, readDHT);
}
void loop() {
}