Maker.io main logo

Graphical Temperature & Humidity Control Unit Using a Raspberry Pi Pico

2022-08-31 | By Hesam Moshiri

License: Attribution Non-Commercial No Derivatives

Raspberry Pi Pico is a cute piece of hardware. It is equipped with a powerful dual-core RP2040 microcontroller that offers 2M (up to 16M) Flash and 264K SRAM memories. Such specifications make it suitable for a variety of hobby and industrial applications.

In this article/video, I used a Pico board, a digital SHTC3 sensor, and a 2.4” colorful TFT display to build a graphical temperature and humidity measurement/control unit that can be used to monitor the home, workplace, indoor garden, devices … etc. The board was also equipped with two Relays that allow the user to set the cooling/heating limits and adjust the parameters in the GUI.

The trickiest part of this project was the Pico code. I used the Pico C/C++ SDK library and invested a significant amount of time in designing the GUI and debugging the code. I should confess it was not an easy task.

To design the schematic and PCB, I used Altium designer 22 and installed the missing component libraries using Altium’s manufacturer part search.

It's a cool piece of hardware for anyone, so let’s get started :-)

 

 

Specifications

  • Input Power: 7.5V to 9Vmax
  • Current Consumption: 280mA(max)
  • Temperature Range: -40C to 125C
  • Temperature Tolerance: +/-0.2C
  • Humidity Range: 0%RH to 100%RH
  • Humidity Tolerance: +/-2%RH
  • Output Relay Control Statement: Temperature 
  • Screen Size: 2.4” colorful (320*240)

A: Circuit Analysis

The schematic diagram of the device consists of two parts: the main circuit and the panel circuit. Figure 1 shows the schematic diagram of the mainboard and figure 2 shows the schematic diagram of the panelboard. I used Altium Designer to design the schematic and PCB.

Schematic diagram of the temperature

Figure 1

Schematic diagram of the temperature and humidity monitoring and control unit (main circuit)

Schematic diagram of the temperature and humidity

Figure 2

Schematic diagram of the temperature and humidity monitoring and control unit (panel circuit)

 

A-1: Main Circuit

The main circuit can be divided into 3 essential parts: power supply, Pico board, and Relays. I explain each part separately.

 

A-1-1: Power Supply

VIN is a 2 pins XH connector that is used to connect the power to the board. The acceptable input voltage range is 7.5V to 9V. REG1 is a 78M05 +5V regulator [1] that provides a +5V supply rail for the relays. The maximum current draw of this section is 100mA because both relays won’t be activated at the same time, otherwise, the current consumption of each relay is around 90mA to 100mA. C1 and C2 were used to reduce the input and output noises. 

The combination of FB1 (zero-ohm ferrite bead) and C4 reduce the input voltage noises because the supply of the Relays and the rest of the board should not be identical. REG2 is another 78M05 regulator that provides a +5V rail for the processor, sensor, and TFT display.

D1 is an LED that indicates a proper supply connection and C5, C6, C7, and C8 were used to reduce the noise. REG3 is an AMS1117-3.3V regulator [2] that prepares a stable +3.3V supply rail for the Pico, SHTC3 sensor module, and TFT display.

 

A-1-2: Pico Board

I used the default Raspberry Pi Pico board for this project (Pico1) [3]. The flash memory size of this board is 2M. figure 3 shows a picture of the Pico board.

Raspberry Pi Pico board

Figure 3

Raspberry Pi Pico board (2M Flash)

According to the Raspberry Pi Pico datasheet, the simplest method to power the Pico board without a USB connection is through a Schottky diode (D2). In general, a diode introduces a forward voltage drop, however since the input voltage is +5V, this would not cause any problem. Therefore, a series diode is the best solution for our application. C11, C12, and C13 soften the debouncing effect and reduce tactile push button noises. I used these capacitors as close as possible to the Pico pins. R7 is a pullup resistor for the Reset pin (active-low Reset pin of the LCD). P2 is the connector for the SHTC3 module and C3 is a decoupling capacitor. CON1 is a 40Pins FPC connector that provides a connection between the panelboard and the mainboard.

 

A-1-3: Relays 

P3 and P4 are power connectors to connect the heater and cooler to the mainboard. K1 and K2 are LM1-5D relays [4]. Q1 and Q2 are 2N7002 [5] Mosfets to control the relays and D3 and D4 protect the Mosfets against the reverse currents of the Relays’ coils. R8 and R9 are pull-down resistors to prevent unwanted triggering of the Mosfets. D5 and D6 are LEDs to indicate the activation of Relays. C9 and C10 are used to reduce the Relay activation/deactivation noises.

A-2: Panel Circuit

CON1 and LCD1 are 40Pins FPC connectors. CON1 provides a connection between the mainboard and the panelboard. C1 to C4 are used to reduce the supply noise. R1 is a pull-up resistor for the CS (chip select) pin because this pin is active-low. R2 is a pull-down resistor for the MISO Pin, sometimes it is fine to act like this to reduce the possible noises on the high-speed SPI bus. R3, R4, and R5 are pull-up resistors for the SW1, SW2, and SW3 tactile pushbuttons.

B. PCB Layout

Figure 4 shows the PCB layout of the mainboard and figure 5 demonstrates the PCB layout of the panelboard. Both are two layers of PCBs, and the majority of the components are SMD. The board cut-out areas are clear in figure 5 because I assumed that the user might decide to control AC loads, so creepage areas must be implemented. Figure 6 shows the assembly drawing of the mainboard and figure 7 shows the assembly drawing of the panelboard.

PCB layout of the mainboard

Figure 4

PCB layout of the mainboard (Altium Designer)

 

PCB layout of the panelboard

Figure 5

PCB layout of the panelboard (Altium Designer)

 

Assembly drawing of the mainboard

Figure 6

Assembly drawing of the mainboard

 

Assembly drawing of the panelboard

Figure 7

Assembly drawing of the panelboard

 

C. Code

As you know, flashing the Raspberry Pi Pico is pretty easy. You just need to press and hold the BOOT button and connect the USB cable to the computer. The Raspberry Pi Pico folder pops up and you just need to drag & drop or copy-paste the UF2 file to the folder and that’s it. 

You can download the UF2 file here: https://www.dropbox.com/s/gva59f83ib1f4er/project1.uf2?dl=0

 

D. TFT Display

I used a colorful 2.4” 40-Pins TFT display. The resolution of the display is 320*240. The controller chip of the LCD is ILI9341. Figure 8 shows a picture of the LCD and pinouts. You must order a type without a touch screen.

ILI9341 TFT display

Figure 8

2.4” ILI9341 TFT display pinout 

 

E. Assembly and Test

Figure 9 shows the fully assembled PCB board. The most difficult components to solder are the 40-Pins FPC connectors. If you don’t have experience in micro soldering and necessary equipment such as quality flux, soldering irons, hot air, and iron tips, please do some practice before, otherwise, it is pretty easy to damage the connectors, PCB board, or build several solder bridges between the tiny 0.5mm pitch pins. Be careful that you must use a reverse 40-Pins FFC cable between the mainboard and the panelboard. Please watch the YouTube video for more details.

Fully assembled PCB board of the Temperature

Figure 9

Fully assembled PCB board of the Temperature & Humidity Control Unit

 

F. Bill of Materials

Figure 10 shows the bill of materials for the project. 

 Bill of materials of the Temperature

G. References

[1]: 78M05: https://www.digikey.com/en/products/detail/stmicroelectronics/L78M05ACDT-TR/585726

[2]: TLV1117-33C: https://www.digikey.com/en/products/detail/texas-instruments/TLV1117-33CKVURG3/1677129

[3]: Raspberry Pi Pico: https://www.digikey.com/en/products/detail/raspberry-pi/SC0915/13624793

[4]: LM1-5D: https://octopart.com/lm1-5d-rayex-53719411?r=sp

[5]: 2N7002: https://www.digikey.com/en/products/detail/vishay-siliconix/2N7002-T1-E3/2621522

制造商零件编号 L78M05ACDT-TR
IC REG LINEAR 5V 500MA DPAK
STMicroelectronics
¥4.80
Details
制造商零件编号 TLV1117-33CKVURG3
IC REG LINEAR 3.3V 800MA TO252-3
Texas Instruments
¥6.11
Details
制造商零件编号 SC0915
RASPBERRY PI PICO RP2040
Raspberry Pi
¥32.56
Details
Add all DigiKey Parts to Cart
TechForum

Have questions or comments? Continue the conversation on TechForum, DigiKey's online community and technical resource.

Visit TechForum