Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Exercise 5: The I2C bus and the SHT30 Temperature and Humidity SensorIntroduction | ||||||||
Line: 24 to 24 | ||||||||
The most interesting documents are | ||||||||
Changed: | ||||||||
< < | ||||||||
> > | ||||||||
Using a driver from githubThis 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![]() |
Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Exercise 5: The I2C bus and the SHT30 Temperature and Humidity SensorIntroduction | ||||||||
Line: 22 to 22 | ||||||||
![]() | ||||||||
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 | |||||||
Added: | ||||||||
> > | Using a driver from githubThis 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![]() | |||||||
Clone the sht30 repository: |
Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Exercise 5: The I2C bus and the SHT30 Temperature and Humidity SensorIntroduction | ||||||||
Line: 44 to 44 | ||||||||
I will give no further explication on how to use the driver other than what is given in the README.md file. 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? Try the code snippets given in the README.md file and make sure they do work.
Exercise 3: Can you do better? (Bonus point) | ||||||||
Changed: | ||||||||
< < | Sensirion provides a driver written in C for the STM32-Discovery board (Sample Code Humidity Sensor SHT3x). Can you port this driver to the ESP32 and translate it into Python? Make a list of all functions the SHT30 provides and mark down, which of them are accessible by Sanchez’ driver. Can you write a driver that implements all functions the SHT30 provides? | |||||||
> > | Sensirion provides a driver written in C for the STM32-Discovery board (Sample Code Humidity Sensor SHT3x). Can you port this driver to the ESP32 and translate it into Python? Make a list of all functions the SHT30 provides and mark down, which of them are accessible by Sanchez’ driver. Can you write a driver that implements all functions the SHT30 provides? | |||||||
Solving this exercise requires quite some effort but you will learn how to read and analyze a data sheet and how to convert its information into working code. Finally you can integrate your code into MicroPython and make it available to others. |
Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Exercise 5: The I2C bus and the SHT30 Temperature and Humidity SensorIntroduction | ||||||||
Line: 48 to 48 | ||||||||
Solving this exercise requires quite some effort but you will learn how to read and analyze a data sheet and how to convert its information into working code. Finally you can integrate your code into MicroPython and make it available to others. | ||||||||
Added: | ||||||||
> > | The exercise sheet in odt format: https://afnog.iotworkshop.africa/pub/IoT_Course_English/TheI2CBusAndTheSHT30TemperatureAndHumiditySensorexercise_5.odt | |||||||
-- ![]() Comments | ||||||||
Line: 59 to 63 | ||||||||
| ||||||||
Added: | ||||||||
> > |
|
Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Exercise 5: The I2C bus and the SHT30 Temperature and Humidity SensorIntroduction | ||||||||
Line: 44 to 44 | ||||||||
I will give no further explication on how to use the driver other than what is given in the README.md file. 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? Try the code snippets given in the README.md file and make sure they do work.
Exercise 3: Can you do better? (Bonus point) | ||||||||
Changed: | ||||||||
< < | Sensirion provides a driver written in C for the STM32-Discovery board (Sample Code Humidity Sensor SHT3x). Can you port this driver to the ESP32 and translate it into Python? Solving this exercise requires quite some effort but you will learn how to read and analyze a data sheet and how to convert its information into working code. Finally you can integrate your code into MicroPython and make it available to others. | |||||||
> > | Sensirion provides a driver written in C for the STM32-Discovery board (Sample Code Humidity Sensor SHT3x). Can you port this driver to the ESP32 and translate it into Python? Make a list of all functions the SHT30 provides and mark down, which of them are accessible by Sanchez’ driver. Can you write a driver that implements all functions the SHT30 provides? Solving this exercise requires quite some effort but you will learn how to read and analyze a data sheet and how to convert its information into working code. Finally you can integrate your code into MicroPython and make it available to others. | |||||||
-- ![]() |
Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Exercise 5: The I2C bus and the SHT30 Temperature and Humidity SensorIntroduction | ||||||||
Line: 31 to 31 | ||||||||
git clone https://github.com/rsc1975/micropython-sht30.git![]() | ||||||||
Changed: | ||||||||
< < | In order not to interfere with the SHT30 driver already installed in the MicroPython binary please rename sht30.py to mysht30.py. Then upload the driver to the ESP32 /lib directory: | |||||||
> > | Upload the driver to the ESP32 /lib directory: | |||||||
Changed: | ||||||||
< < | ampy put mysht30.py /lib/mysht30.py | |||||||
> > | ampy put sht30.py /lib/sht30.py | |||||||
Now you can import the class with: | ||||||||
Changed: | ||||||||
< < | from mysht30 import SHT30 | |||||||
> > | from sht30 import SHT30 | |||||||
Once this is done you can try the examples from the repository README.md. |
Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Exercise 5: The I2C bus and the SHT30 Temperature and Humidity SensorIntroduction | ||||||||
Line: 41 to 41 | ||||||||
Once this is done you can try the examples from the repository README.md. | ||||||||
Changed: | ||||||||
< < | I will give no further explication on how to use the driver other than what is given in the README.mf file. 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? | |||||||
> > | I will give no further explication on how to use the driver other than what is given in the README.md file. 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? Try the code snippets given in the README.md file and make sure they do work. | |||||||
Exercise 3: Can you do better? (Bonus point) | ||||||||
Changed: | ||||||||
< < | Sensirion provides a driver written in C for the STM32-Discovery board (Sample Code Humidity Sensor SHT3x). Can you port this driver to the ESP32 and translate it into Python? | |||||||
> > | Sensirion provides a driver written in C for the STM32-Discovery board (Sample Code Humidity Sensor SHT3x). Can you port this driver to the ESP32 and translate it into Python? Solving this exercise requires quite some effort but you will learn how to read and analyze a data sheet and how to convert its information into working code. Finally you can integrate your code into MicroPython and make it available to others. | |||||||
-- ![]() |
Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Exercise 5: The I2C bus and the SHT30 Temperature and Humidity SensorIntroduction | ||||||||
Line: 24 to 24 | ||||||||
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![]() | ||||||||
Added: | ||||||||
> > | ||||||||
Clone the sht30 repository: | ||||||||
Line: 55 to 56 | ||||||||
| ||||||||
Added: | ||||||||
> > |
|
Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Exercise 5: The I2C bus and the SHT30 Temperature and Humidity SensorIntroduction | ||||||||
Line: 40 to 40 | ||||||||
Once this is done you can try the examples from the repository README.md. | ||||||||
Changed: | ||||||||
< < | I will give no further explication on how to use the driver than what is given in the README.mf file. 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? | |||||||
> > | I will give no further explication on how to use the driver other than what is given in the README.mf file. 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?
Exercise 3: Can you do better? (Bonus point)Sensirion provides a driver written in C for the STM32-Discovery board (Sample Code Humidity Sensor SHT3x). Can you port this driver to the ESP32 and translate it into Python? | |||||||
-- ![]() |
Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Exercise 5: The I2C bus and the SHT30 Temperature and Humidity SensorIntroduction | ||||||||
Line: 26 to 26 | ||||||||
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? Do you find bugs? | |||||||
> > | Clone the sht30 repository: | |||||||
Changed: | ||||||||
< < | The driver is already hard-coded in the MicroPython binary and does not need to be uploaded to the ESP32 to be used. | |||||||
> > | git clone https://github.com/rsc1975/micropython-sht30.git![]() | |||||||
-- ![]() |
Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Exercise 5: The I2C bus and the SHT30 Temperature and Humidity SensorIntroduction | ||||||||
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![]() | |||||||
> > | 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![]() | |||||||
Exercise 1: I2C Bus ScanI2C is supported by a driver in the MicroPython![]() | ||||||||
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:
![]() | ||||||||
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![]() | |||||||
> > | ![]() ![]() | |||||||
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 | ||||||||
| ||||||||
Added: | ||||||||
> > |
|
Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Exercise 5: The I2C bus and the SHT30 Temperature and Humidity SensorIntroduction | ||||||||
Line: 18 to 18 | ||||||||
Exercise 2: Read out the SHT30 | ||||||||
Changed: | ||||||||
< < | This time we are going to be lazy and just use a pure Python driver written by 'Roberto Sánchez which I attached to this exercise sheet. | |||||||
> > | First of all let's have a look at the SHT30 documentation![]() | |||||||
Changed: | ||||||||
< < | https://afnog.iotworkshop.africa/pub/IoT_Course_English/TheI2CBusAndTheSHT30TemperatureAndHumiditySensor/sht30.py.txt | |||||||
> > | 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![]() | |||||||
Changed: | ||||||||
< < | I will however 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. | |||||||
> > | 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? | |||||||
The driver is already hard-coded in the MicroPython binary and does not need to be uploaded to the ESP32 to be used. |
Line: 1 to 1 | |||||||||
---|---|---|---|---|---|---|---|---|---|
Added: | |||||||||
> > |
Exercise 5: The I2C bus and the SHT30 Temperature and Humidity SensorIntroductionWhile 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![]() Exercise 1: I2C Bus ScanI2C is supported by a driver in the MicroPython![]() ![]() Exercise 2: Read out the SHT30This time we are going to be lazy and just use a pure Python driver written by 'Roberto Sánchez which I attached to this exercise sheet. https://afnog.iotworkshop.africa/pub/IoT_Course_English/TheI2CBusAndTheSHT30TemperatureAndHumiditySensor/sht30.py.txt I will however 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. The driver is already hard-coded in the MicroPython binary and does not need to be uploaded to the ESP32 to be used. --![]() Comments
|