Skip to content

CrowPanel ESP32 Terminal SPI with PlatformIO

Overview


The example tutorial is an environmental monitoring project, demonstrate how to create a UI and use a Humidity&Temperature sensor to obtain the environment temperature and humidity and display it on the screen; and how to control the LED on and off by the buttons on the screen.

In this tutorial, we will show you how to design the UI with SquareLine Studio, and show you how to build a project on PlatformIO.

spi-demo

Hardware Preparation


ESP32 Terminal Crowtail-AM2302 Crowtail-LED
CrowPanel-ESP32-Content-T-SPI AM2302 CROWTAIL-LED
BUYNOW BUYNOW BUYNOW

Design UI file with SquareLine Studio


Get Started with SquareLine Studio

Please click the card below to learn how to download the SquareLine Studio, and how to export the demo UI file.

GetStartedWithSquareLine

Design UI file with SquareLine Studio

Let's start learning how to create our own UI after getting an initial understanding of SquareLine Studio.

  1. Open the SquareLine Studio and create a project. Select "Arduino"->"Arduino with TFT_eSPI".

    SLS-UI-1

    Note:

    When select the Arduino framwork, there's only one option "Arduino with TFT_eSPI". By choosing this, the squareline studio will generate a template code suitable for the TFT_eSPI library. However, squareline studio not only supports the TFT_eSPI library, it supports a variety of libraries to suit different hardware and application needs. For example, Adafruit_GFX library, LovyanGFX etc.

    After using SLS to generate UI code, we then use different graphics libraries according to different hardware and modify the corresponding code to display the content you design.

  2. Set the name of the project, set the screen resolution to 480*320, set the color depth to 16bit, and keep other default settings. After setting, click CREATE to create the project.

    SLS-UI-2

  3. After creation, enter the following interface with a blank background.

    SLS-UI-3

  4. In the "Assets" area, click "ADD FILE TO ASSETS" to add custom images or icons.

    Please click download to download the custom images used in this tutorial.

    SLS-UI-4

    Note:

    Images only support PNG format. The pixels of the image need to be smaller than the pixel size of the screen used in your project. The size of each image should not exceed 100k, preferably within 30k, to provide a smooth display effect.

  5. Add background.

    Find "Inspector"->"STYLE SETTING", click to expand "STYLE(MAIN)", then click the 2nd "Background". Check the "Bg Image" and select the background image.

    SLS-UI-5

    SLS-UI-6

  6. Add Label widget to display temperature and humidity.

    Click "Label" in the "Widgets" area, and "Label1" will be added to the current Screen.

    SLS-UI-7

    The position and size of the label can be adjusted by dragging the mouse. You can also directly enter numbers in the Inspector→LABEL→Transform to adjust.

    SLS-UI-8

    You can set the font color and other attributes in STYLE SETTING→STYLE(MAIN).

    SLS-UI-9

    Add a Label2 to display the humidity value in the same way. You can also directly right-click the Label1 to duplicate it.

    SLS-UI-10

    Then set different positions for the Label2.

    SLS-UI-11

    Modify the text content to display a default value.

    SLS-UI-18

  7. Add Button widget to control the LED.

    Click "Button" in the "Widgets" area, and "Button1" will be added to the current Screen.

    SLS-UI-12

    The position and size of the label can be adjusted by dragging the mouse. You can also directly enter numbers in the Inspector→BUTTON→Transform to adjust.

    SLS-UI-13

    Add an identification symbol to the button. The button in this tutorial controls the LED switch, so you only need to mark the button "on" and "off". You can add LABEL widgets or add a background images to the button. This tutorial will demonstrate how to add a background image to a button.

    Click the Button1, then find Inspector->STYLE SETTINGS ->STYLE(MAIN) ->Background, and select the image.

    SLS-UI-14

    SLS-UI-15

    In the same way, duplicate a Button widget. And drag it to the corresponding position to modify different background image.

    SLS-UI-16

    SLS-UI-17

    Set the status of the button to identify different states.

    In "Inspector"->"STYLE SETTINGS"->"STATE", set display white background color by DEFAULT and red when on the PRESSED state.

    SLS-UI-19

    SLS-UI-20

    Make the same settings for the "OFF" button.

  8. Add events to buttons.

    Note: Because the button controls the on and off of the LED, we can add any event here to generate the code framework for the button event when exporting the UI file. We will modify the code of the button event to control the LED latter.

    Select the button and click "ADD EVENT".

    SLS-UI-21

    Select "released" as the trigger condition, select a trigger event in "Action". It will be modified in the generated program to achieve the LED control function.

    SLS-UI-22

    Complete the event. Here I choose to change the screen, and the screen to be switched is Screen1.

    SLS-UI-23

    Add event to Button2 (OFF) in the same way.

    SLS-UI-24

  9. Export UI files.

    Click "File" -> "Project Settings" and make settings for the exported file.

    SLS-UI-25

    Set the export path of the file (set the path according to your own file).

    SLS-UI-26

    Fill in lvgl.h in LVGL Include Path. Check "Flat export(exports all files to one folder )".

    Then click "APPLY CHANGES".

    Tips: After selecting the flat export, the output files will be in the same folder, so that the output code does not need to modify the path in the program. If not, the output files will be classified and placed in different folders. The compiler may not be able to recognize different paths, which will cause some trouble. In this case, the user needs to modify it manually, so it is recommended to select all files to be output to the same folder.

    SLS-UI-27

    Export UI files. The exported files will be in the path we set earlier.

    SLS-UI-28

    SLS-UI-29

  10. Modify the button event code.

    First, define a extern int led; in the ui.h file to store the status of the LED. The value of this variable is judged to control the on and off of the LED.

    SLS-UI-30

    Then find "FUNCTION" in the ui.c file. Here is the corresponding code generated when we add events in SquareLine.

    SLS-UI-31

    Comment out or delete the code circled in red in the picture above, add new code to assign a value to the LED variable.

    • When button 1 (ON button) is pressed, set the LED value to 1.

    SLS-UI-32

    • When button 2 (OFF button) is pressed, set the LED value to 0.

    SLS-UI-33

    The UI file export is completed, and the button event function is also modified. Next we're going to learn about how to create a PlatformIO project.

Create PlatformIO Project


Please click download to download complete PlatformIO project that can be compiled and run directly.

Now let's explore how to build this project step by step!

Get Started with PlatformIO

Please click the card below to enter the page to get started with PlatformIO.

GetStartedWithPlatformIO

Create a new project

  1. Place the esp32-s3-devkitc-1-myboard.json to the directory in the following picture:

    PIO-1

    Please click download to download the esp32-s3-devkitc-1-myboard.json.

  2. Open Visual Studio Code, click the PlatformIO icon, click QUICK ACCESS 'Open', then click '+New Project'.

    PIO-2

  3. Add a project name "CrowPanel_Terminal_3.5inch_SPI_Capacitive". Select "Espressif ESP32-S3-DevKitC-1-N8 (8 MB QD, NO PSRAM)" for the board and "Arduino" for the framework.

    PIO-3

    Note: The ESP32-S3-N16R8 development board cannot be found in the platformio configuration. Here, the board is selected as Espressif ESP32-S3-DevKitC-1-N8 (8 MB QD, No PSRAM). If you need to use PSRAM, the configuration can be modified in the platformio.ini file. The configuration is as follows:

    [env:esp32-s3-devkitc-1]
    platform = espressif32
    board = esp32-s3-devkitc-1
    framework = arduino
    lib_ldf_mode = deep+  #Use the "depth +" mode when searching for library dependencies
    board_build.arduino.partitions = default_16MB.csv 
    board_build.arduino.memory_type = opi_opi #Run mode for 8MB PSRAM
    build_flags = -DBOARD_HAS_PSRAM       #Used to indicate to the compiler whether the current target device has PSRAM
       -mfix-esp32-psram-cache-issue #Compilation options to fix PSRAM cache coherence issues on ESP32
    board_upload.flash_size = 32MB #FLASH size
    

    This example does not use PSRAM and it does not need to be modified.

  4. Write the main program in main.cpp.

    PIO-5

Add Libraries

  1. Click the PlatformIO icon, click QUIK ACCESS 'Open', then click 'Libraries'.

    PIO-6

  2. Search for LVGL, and add it to the project.

    PIO-7

    PIO-8

    PIO-9

    PIO-10

    After adding, right click on lvgl and select "Open in Integrated Terminal"

    PIO-17

    Copy the "demos" and "examples" folders to "src" folder

    PIO-18

    Place the lv_conf.h we provide to the path: .pio\libdeps\esp32-s3-devkitc-1 in the project folder.

    PIO-19

    Please click download to download the lv_conf.h file.

  3. Add LovyanGFX library

    PIO-14

    PIO-15

    PIO-16

    We can see that the library has been added successfully!

    image084

  4. Add libraries for sensor.

    Right-click the "libdeps\esp32-s3-devkitc-1", click "Reveal in File Explorer", and select the sensor libraries we provided.

    image092

    sensor-lib

Add the UI file into PlatformIO Project

We need to add the UI file (generated from SquareLine Studio) to the PlatformIO project.

The .c files in the UI file should be placed in the /scr folder of the project file, and the .h files should be placed in the /include folder.

PIO-34

PIO-35

Upload the Code

Note: The code explanation please refer to the Arduino tutorial page.

  1. Compile the program.

    Upload-code-1

  2. Select the serial port and upload the code.

    Here we select Auto. The software will automatically select the corresponding serial port for program download. If the automatically selected serial port is incorrect, you can manually select the correct serial port.

    Upload-code-2

  3. Click the upload button to up the program to the board.

    Upload-code-3

  4. The program will run on the board!

    spi-demo

Resources