User Tools

Site Tools


latinet:unicaes:workshops:sensors-23

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
latinet:unicaes:workshops:sensors-23 [2023/08/29 23:58] – [3.1. Analog sensors (ex. capacitive soil moisture sensor)] jan.sonntaglatinet:unicaes:workshops:sensors-23 [2024/09/13 21:57] (current) harley.lara
Line 7: Line 7:
 Now, we're stepping into the practical aspect of our workshop, focusing on Pulse Width Modulation (PWM) output with the ESP8266. PWM isn't just about adjusting the brightness of an LED; it's a versatile method of communication. Through this segment, you'll grasp how PWM operates as a form of control, allowing us to transmit information using varying pulse widths. This will come to life as we demonstrate PWM in action, using an attached LED as an illustrative example. Now, we're stepping into the practical aspect of our workshop, focusing on Pulse Width Modulation (PWM) output with the ESP8266. PWM isn't just about adjusting the brightness of an LED; it's a versatile method of communication. Through this segment, you'll grasp how PWM operates as a form of control, allowing us to transmit information using varying pulse widths. This will come to life as we demonstrate PWM in action, using an attached LED as an illustrative example.
  
-<imgcaption image1|ESP8266 with LED Schematic>{{ :latinet:unicaes:workshops:led_schem.png?400 |}}</imgcaption> +<imgcaption image1|ESP8266 with Blink Demo Breadboard>{{ https://raw.githubusercontent.com/EOLab-HSRW/intro-to-iot/master/diagrams/wemos-blink_bb.png?400 }}</imgcaption> 
-<imgcaption image2|ESP8266 with LED Breadboard>{{ :latinet:unicaes:workshops:led.png?400 |}}</imgcaption>+ 
 +\\ 
 + 
 +<imgcaption image2|ESP8266 with Blink Demo Schematic>{{ https://raw.githubusercontent.com/EOLab-HSRW/intro-to-iot/master/diagrams/wemos-blink_schematic.png?400 }}</imgcaption>
  
 ===== 2. Libraries ===== ===== 2. Libraries =====
Line 16: Line 19:
  
 Remember, in the Arduino world, libraries are your trusted companions, facilitating smooth communication and opening doors to limitless possibilities. Remember, in the Arduino world, libraries are your trusted companions, facilitating smooth communication and opening doors to limitless possibilities.
 +
 +Good-To-Know: Most libraries come with examples that can get you started quickly.
  
 ===== 3. Inputs / Protocols ===== ===== 3. Inputs / Protocols =====
Line 25: Line 30:
 With these common sensors, we don´t need to reinvent the wheel. There are plenty of good tutorials out there on how to use this sensor. One we link here: [[https://wiki.dfrobot.com/Capacitive_Soil_Moisture_Sensor_SKU_SEN0193|Capacitive Soil Moisture Sensor - DFRobot Wiki]] There you will be able to learn how to integrate the sensor into your software as well as how to use it in the real world. Just keep in mind the electronics on top are not protected from the environment. Water shouldn't touch that part! With these common sensors, we don´t need to reinvent the wheel. There are plenty of good tutorials out there on how to use this sensor. One we link here: [[https://wiki.dfrobot.com/Capacitive_Soil_Moisture_Sensor_SKU_SEN0193|Capacitive Soil Moisture Sensor - DFRobot Wiki]] There you will be able to learn how to integrate the sensor into your software as well as how to use it in the real world. Just keep in mind the electronics on top are not protected from the environment. Water shouldn't touch that part!
  
-<imgcaption image3|Wiring of the analog sensor>{{ :latinet:unicaes:workshops:capacitive-soil.png?400 |}}</imgcaption> 
-<imgcaption image4|Schematic>{{ :latinet:unicaes:workshops:capacitive-soil_schem.png?600 |}}</imgcaption> 
  
-<file ino read-analog.ino+<imgcaption image3|Wiring of the analog sensor>{{ https://raw.githubusercontent.com/EOLab-HSRW/intro-to-iot/master/diagrams/wemos-soil_bb.png?400 |}}</imgcaption
-// the setup routine runs once when you press reset+<imgcaption image4|Schematic>{{ https://raw.githubusercontent.com/EOLab-HSRW/intro-to-iot/master/diagrams/wemos-soil_schematic.png?400 |}}</imgcaption> 
-void setup() { + 
-  // initialize serial communication at 115200 bits per second: +We also prepared a little sketch for you. Try to understand it. A good way to do so is to look up function documentation in the Arduino Documentation
-  Serial.begin(115200); + 
-}+<WRAP center round info 40%> 
 +Demo code available in Github [[https://github.com/EOLab-HSRW/intro-to-iot/blob/master/examples/soil-moisture/soil-moisture.ino|Soil moisture]] 
 +</WRAP>
  
-// the loop routine runs over and over again forever: 
-void loop() { 
-  // read the input on analog pin 0: 
-  int sensorValue = analogRead(A0); 
-  // Convert the analog reading (which goes from 0 - 1023) to a voltage (0 - 3.2V): 
-  float voltage = sensorValue * (3.2 / 1023.0); 
-  // print out the value you read: 
-  Serial.println("voltage: " + voltage); 
-  Serial.println("value: " + sensorValue); 
-} 
-</file> 
  
 ==== 3.2. 1-Wire (ex. temperature sensor) ==== ==== 3.2. 1-Wire (ex. temperature sensor) ====
  
-One-Wire is a protocol that is heavily used by the company Maxim Integrated. One of the most popular sensors using this protocol is the (deprecated) DS18B20. It is an easy-to-use temperature sensor, that is available in multiple different form factors. In this workshop we use two different variants:+One-Wire is a bus protocol that is heavily used by the company Maxim Integrated. One of the most popular sensors using this protocol is the (deprecated) DS18B20. It is an easy-to-use temperature sensor, that is available in multiple different form factors. In this workshop we use two different variants:
   - Water-Proof DS18B20   - Water-Proof DS18B20
   - DS18B20 on a PCB   - DS18B20 on a PCB
Line 64: Line 58:
 ==== 3.3. I2C (ex. ToF sensor) ==== ==== 3.3. I2C (ex. ToF sensor) ====
  
 +I2C is one of the most common sensor bus interfaces used. It requires 2 cables for communication. One is called SCL and the other is SDA. I2C in general is a serial interface. SCL is the serial clock. This is needed to synchronize the communication between two components. SDA is the actual serial data line. Here is where all the magic is happening. On one I2C bus, 127 slave devices can be attached. Therefore I2C is a master-slave protocol. The master will instantiate communication by calling for a specific address followed by a register it wants to read or write to, followed by some additional data in case of writing to a device. The slave device will give a response depending on the function called.
 +
 +The sensor used in the sensor is a ToF sensor called VL53L0X, which is able to measure distance pretty accurately.
 +
 +Have a look at the datasheet and the library:
   * [[https://www.st.com/resource/en/datasheet/vl53l0x.pdf | VL53L0X Datasheet ]]   * [[https://www.st.com/resource/en/datasheet/vl53l0x.pdf | VL53L0X Datasheet ]]
   * Here you can find a library for the sensor: [[https://github.com/adafruit/Adafruit_VL53L0X|Adafruit VL53L0X]]   * Here you can find a library for the sensor: [[https://github.com/adafruit/Adafruit_VL53L0X|Adafruit VL53L0X]]
  
-{{ :latinet:unicaes:workshops:tof_bb.png?400 |}}+<imgcaption image5|Schematic>{{ https://raw.githubusercontent.com/EOLab-HSRW/intro-to-iot/master/diagrams/wemos-tof_bb.png?400 |}}</imgcaption> 
 +Task: Try to get the sensor to work with your microcontroller. 
 + 
 +<WRAP center round info 40%> 
 +Demo code available in Github [[https://github.com/EOLab-HSRW/intro-to-iot/blob/master/examples/tof/tof.ino|ToF sensor]] 
 +</WRAP>
  
-==== 3.3. UART ====+==== 3.3. Good to know ====
  
 +Out there are more than just the protocols that we covered today. Here are some more that are worth researching if you are interested:
 +  * SPI
 +  * UART
 +  * Digital Interrupts
  
 ===== Recording ===== ===== Recording =====
  
latinet/unicaes/workshops/sensors-23.1693346307.txt.gz · Last modified: 2023/08/29 23:58 by jan.sonntag