Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Exercise 4: The DHT11 Temperature and Humidity SensorIntroduction | ||||||||
Line: 68 to 68 | ||||||||
You may also plot the data directly from within you Python program using matplotlib![]() | ||||||||
Added: | ||||||||
> > | The exercise sheet in odt format: https://afnog.iotworkshop.africa/pub/IoT_Course_English/TheDHT11TemperatureAndHumiditySensor/exercise_4.odt | |||||||
-- ![]() Comments | ||||||||
Line: 81 to 85 | ||||||||
| ||||||||
Added: | ||||||||
> > |
|
Line: 1 to 1 | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Exercise 4: The DHT11 Temperature and Humidity SensorIntroduction | |||||||||||
Changed: | |||||||||||
< < | The DHT11 is a digital temperature and humidity sensor featuring his own proprietary communication protocol. It uses a single GPIO line (GPIO 16) to serially transfer its temperature and humidity measurement. | ||||||||||
> > | The DHT11 is a digital temperature and humidity sensor featuring its own proprietary communication protocol. It uses a single GPIO line (GPIO 16) to serially transfer its temperature and humidity measurement. | ||||||||||
![]() | |||||||||||
Line: 11 to 11 | |||||||||||
For this reason I have added a second driver allowing to read raw bit values as they appear in the DHT11 protocol. This allows the student to understand how the DHT11 actually works and what the driver is doing to extract the temperature and humidity values. | |||||||||||
Added: | |||||||||||
> > | This driver (module dht11Raw) starts a measurement on the DHT11 and then scans the DHT11's data line every 4 us keeping its state in a 32*32 bit array. The first measured bit is the highest significant bit of the first array element and the last measured bit is the lowest significant bit of the last element in the array. | ||||||||||
Here is the DHT11 data sheet: https://afnog.iotworkshop.africa/pub/IoT_Course_English/TheDHT11TemperatureAndHumiditySensor/DHT11.pdf | |||||||||||
Line: 22 to 24 | |||||||||||
The description of the MicroPython driver is found in the !MicroPython documentation![]() Exercise 2: Understanding the DHT11 protocol | |||||||||||
Added: | |||||||||||
> > | The screen dump below shows the raw data from a DHT11 measurement. Try to extract temperature and humidity from this measurement, calculate the checksum and compare it to the one transmitted in the protocol.
![]() Exercise 3: Getting the Raw DataGet at the raw data and write them to a file on the ESP32. The dht11Raw module has a single function: dht11ReadRaw(pin,dht11Data) The data must be an integer array with 32 integer values. You can create this with: import arraydht11Data = array.array("I",[0]*32) which creates the needed array and fills it with zeros. Once have the data, you must write them in a suitable format to a file on the ESP32. In my solutions I write them to a file named "/data/dht11.txt". Before writing I check if the "/data" directory exists. You can do this with a try/except clause using the system call uos.stat('/data'). This will raise an OSError with error number ENOENT if the directory does not exist. (Have a look in the uerrno module). In this case you can create it with uos.makedir('/data'). Write the data in hex text format with 8 hex characters per integer number. Here an example: ![]() ![]() Exercise 4:Extract the individual bits from the raw data of exercise and write them to an "uncompressed file". Each data entry will contain either 0 or 1.![]() ![]() ![]() | ||||||||||
-- ![]() Comments | |||||||||||
Line: 30 to 76 | |||||||||||
| |||||||||||
Added: | |||||||||||
> > |
|
Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Exercise 4: The DHT11 Temperature and Humidity SensorIntroduction | ||||||||
Line: 12 to 12 | ||||||||
For this reason I have added a second driver allowing to read raw bit values as they appear in the DHT11 protocol. This allows the student to understand how the DHT11 actually works and what the driver is doing to extract the temperature and humidity values. Here is the DHT11 data sheet: | ||||||||
Deleted: | ||||||||
< < | ||||||||
https://afnog.iotworkshop.africa/pub/IoT_Course_English/TheDHT11TemperatureAndHumiditySensor/DHT11.pdf | ||||||||
Added: | ||||||||
> > | Please read it carefully!
Exercise 1: The DHT11 using the MicroPython driverWrite a script which reads out thee DHT11 and prints its temperature and humidity values. As mentioned in the introduction, the DHT11 is connected to the ESP32 through GPIO pin 16. The description of the MicroPython driver is found in the !MicroPython documentation![]() Exercise 2: Understanding the DHT11 protocol | |||||||
-- ![]() Comments |
Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Exercise 4: The DHT11 Temperature and Humidity Sensor | ||||||||
Added: | ||||||||
> > | Introduction | |||||||
Changed: | ||||||||
< < | Article text. | |||||||
> > | The DHT11 is a digital temperature and humidity sensor featuring his own proprietary communication protocol. It uses a single GPIO line (GPIO 16) to serially transfer its temperature and humidity measurement.
![]() | |||||||
-- ![]() Comments | ||||||||
Added: | ||||||||
> > |
|
Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Added: | ||||||||
> > |
Exercise 4: The DHT11 Temperature and Humidity SensorArticle text. --![]() Comments |