Trybotics Logo

DIY How to Display Time on M5StickC ESP32 Using Visuino - Easy to Do

DESCRIPTION

In this tutorial we will learn how to program ESP32 M5Stack StickC with Arduino IDE and Visuino to Display the time on the LCD.

Description:

  1. M5StickC ESP32: you can get it here
  2. Visuino program: Download Visuino

Note: Check this tutorial here on how to Install StickC ESP32 board

Description:

Start Visuino as shown in the first picture Click on the "Tools" button on the Arduino component (Picture 1)

in Visuino When the dialog appears, select "M5 Stack Stick C" as shown on Picture 2

Description:

  1. Click on "M5 Stack Stick C" Board to select it
  2. In "Properties" window select "Modules" and click "+" to Expand, Select "Display ST7735" and click "+" to expand it
  3. Set Orientation to "goRight" < this means how the time will be oriented on the LCD
  4. Select "Elements" and click on blue button with 3 dots...
  5. Elements Dialog will show
  6. In the Elements Dialog drag "Text Field" from the right side to the left

Click on the "Text Field1" on the left side to select it, then in the "Properties window" click on color and set it to "aclOrange"

-also in properties windows set X:10 and Y:20 this is where you want to display the time on the LCD

-set size:3 this is the font size of the time

-You can set the text size and color if you want

Close the elements window

Optionally:

Click on "M5 Stack Stick C" Board to select it

In "Properties" window select "Modules" and click "+" to Expand, Select "Display ST7735" and click "+" to expand it and you will see "Background color" this is the default color of the display, change it to your favourite color, you can alse set display brightness, the default is 1 (max) you can set it to 0.5 or some other value to make it more dim

6. Add "Decode (Split) Date/Time" component
7. Add "Formatted text" component

Description:

  1. Select "FormattedTxt1" component and under "Properties" window set "Text" to: %0:%1:%2
  2. Double click on "FormattedText1" component and in the Elements dialog drag 3x "Text Element" to the left

Description:

  • Connect "M5 Stack Stick C" > Real Time Alarm Clock(RTC) > Pin [Out] to "DecodeDateTime1" component pin[In]
  • Connect "DecodeDateTime1" component pin [Hour] to "FormattedText1" component "TextElement1" pin[In]
  • Connect "DecodeDateTime1" component pin [Minute] to "FormattedText1" component "TextElement2" pin[In]
  • Connect "DecodeDateTime1" component pin [Second] to "FormattedText1" component "TextElement3" pin[In]
  • Connect "FormattedText1" component pin [Out] to "M5 Stack Stick C" board "Display ST7735">"Text Field1" pin [In]

Description:

  • Click the Arduino icon on the toolbar, this will generate code and open the Arduino IDE. The button next to it will compile and send the code straight to the device. You will want to open the IDE the first time to make sure the COM port is set correctly. After that the Arduino IDE will save your settings.
  • Once in the Arduino IDE make sure your Board, Speed, and Port are set correctly. You will most likely need to set the COM port from the sub menu, but the others should be set automatically. If you have more than one COM port try removing your M5Stick, look and see which ports remain, then reattach the M5Stick and see which one returns. That is it’s COM port.
  • Then click Upload. This will Verify (compile) and Upload.

Description:

If you power the M5Sticks module, the display should start to show the time.

Congratulations! You have completed your M5Sticks project with Visuino. Also attached is the Visuino project, that I created for this Instructable, you can download it here.

You can download and open it in Visuino: https://www.visuino.com

Description:

You can use the current time that was on your computer on the moment you compiled the code in Arduino.

  • To do that just drop a "Compile Date/Time" component and connect it to "M5 Stack Stick C" > "Real Time Alarm Clock(RTC)" pin [Set]

You can download the Project file with this trick here.

Description:

In the next tutorial I will show you how to make a Cool Looking watch where you can set the time using the StickC buttons!
Stay tuned and check out my other tutorials here.


YOU MIGHT ALSO LIKE