Difference: TheI2CBusAndTheSHT30TemperatureAndHumiditySensor (2 vs. 3)

Revision 32020-05-17 - UliRaich

Line: 1 to 1
 
META TOPICPARENT name="Exercises"

Exercise 5: The I2C bus and the SHT30 Temperature and Humidity Sensor

Introduction

Changed:
<
<
While the DHT11 uses a proprietary protocol the SHT30 make use of a standardized protocol: the I2C protocol, invented by Philips at the beginning of the 1980's. To get you going with I2C please have a look at https://learn.sparkfun.com/tutorials/i2c/all where the protocol is nicely described. You can find all the details about the SHT30 in its data sheet:

https://iotworkshop.africa/pub/IoT_Course_English/TheI2CBusAndTheSHT30TemperatureAndHumiditySensor/SHT30Datasheet.pdf

>
>
While the DHT11 uses a proprietary protocol the SHT30 make use of a standardized protocol: the I2C protocol, invented by Philips at the beginning of the 1980's. To get you going with I2C please have a look at https://learn.sparkfun.com/tutorials/i2c/all where the protocol is nicely described.
 

Exercise 1: I2C Bus Scan

I2C is supported by a driver in the MicroPython binary.

Added:
>
>
The ESP32 has 2 hardware I2C interfaces (bus 0 and bus 1) with GPIO 21 connected to SDA and GPIO 22 connected to SCL of bus1.
 Write a script that scans the I2C bus and prints all available I2C addresses in the following form:

i2cscan.png

Line: 20 to 20
  First of all let's have a look at the SHT30 documentation.
Changed:
<
<
This time we are going to be lazy and just use a pure Python driver written by 'Roberto Sánchez which you can find on github at https://github.com/rsc1975/micropython-sht30/blob/master/sht30.py. The most interesting documents are

>
>
sht30-1.png

This time we are going to be lazy (?) and just use a pure Python driver written by 'Roberto Sánchez which you can find on github at https://github.com/rsc1975/micropython-sht30/blob/master/sht30.py. The most interesting documents are

 
Changed:
<
<
I will give no further explication on how to use the driver. Please read the source code and find out yourself which methods are implemented and how to use the driver. Does it work out of the box or do we have to make some modifications?
>
>
I will give no further explication on how to use the driver. Please read the source code and find out yourself which methods are implemented and how to use the driver. Does it work out of the box or do we have to make some modifications? Do you find bugs?
  The driver is already hard-coded in the MicroPython binary and does not need to be uploaded to the ESP32 to be used.
Line: 37 to 39
 
META FILEATTACHMENT attachment="i2cscan.png" attr="" comment="" date="1589468508" name="i2cscan.png" path="i2cscan.png" size="41381" user="UliRaich" version="1"
META FILEATTACHMENT attachment="SHT30Datasheet.pdf" attr="" comment="" date="1589469480" name="SHT30Datasheet.pdf" path="SHT30Datasheet.pdf" size="941854" user="UliRaich" version="1"
META FILEATTACHMENT attachment="sht30.py.txt" attr="" comment="" date="1589470176" name="sht30.py.txt" path="sht30.py.txt" size="6612" user="UliRaich" version="1"
Added:
>
>
META FILEATTACHMENT attachment="sht30-1.png" attr="" comment="" date="1589741978" name="sht30-1.png" path="sht30-1.png" size="172283" user="UliRaich" version="1"
 
This site is powered by the TWiki collaboration platform Powered by PerlCopyright © 2008-2024 by the contributing authors. All material on this collaboration platform is the property of the contributing authors.
Ideas, requests, problems regarding TWiki? Send feedback