Search found 4 matches

by mormic
Fri Aug 27, 2021 4:19 pm
Forum: ESP32 Arduino
Topic: ESP32 TTGO T1 character '°'
Replies: 1
Views: 1771

Re: ESP32 TTGO T1 character '°'

Hi,
I have found the solution to this problem:

Code: Select all

tft.drawingChar((char)167);
or with Strings:

Code: Select all

tft.drawingString(yourTemperature + String((char)167));
display for example: 15.26°
by mormic
Thu Aug 26, 2021 10:47 am
Forum: ESP32 Arduino
Topic: ESP32 TTGO T1 character '°'
Replies: 1
Views: 1771

ESP32 TTGO T1 character '°'

Hello
I can't display the character temperature '°' because it is not in the standard font.
Is it possible to modify a not used character in this font (for example '!') to replace it with the temperature char '°' ?
If you could help me.
Thanks

Mormic
by mormic
Sun Aug 15, 2021 10:12 am
Forum: ESP32 Arduino
Topic: ESP32 TTGO T1 with a GPS module
Replies: 1
Views: 2683

Re: ESP32 TTGO T1 with a GPS module

Hi, i solved the problem by updating the espSoftwareSerial library. But now with this program and with an other one which worked properly, i have this erreur just after the program is started: Guru Meditation Error: Core 1 panic'ed (LoadStoreError). Exception was unhandled. Core 1 register dump: PC ...
by mormic
Sat Aug 14, 2021 10:25 am
Forum: ESP32 Arduino
Topic: ESP32 TTGO T1 with a GPS module
Replies: 1
Views: 2683

ESP32 TTGO T1 with a GPS module

Hello, I made a layout on Arduino Uno with a GPS module NEO6MV2. All worked properly. I try now to make the same layout with ESP32 TTGO T-Display V1.1. I have properly configure pins and board. But the compilation does not result with this message: D:\Arduino sketches\libraries\SoftwareSerial-master...