We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can you provide the Stemma QT Pinout?
The text was updated successfully, but these errors were encountered:
Hi @lewisxhe
Can you please provide an example to use this Stemma QT/UART for connecting an AT6558 navigation chip/GPS? Would something like this work?
#include <HardwareSerial.h> static const uint32_t GPSBaud = 9600; HardwareSerial GPSRaw(2);
void Setup() { GPSRaw.begin(GPSBaud); ... }
void Loop(){ if (GPSRaw.available()) { int ch = GPSRaw.read(); uiRenderer.drawTextBox(mapSprite, String(ch), 10, 10, 4, TFT_WHITE); } .. }
Sorry, something went wrong.
Refer to here, specify RX TX before initialization https://github.com/Xinyuan-LilyGO/LilyGo-AMOLED-Series/blob/299a71b1f79d5f372edfa2c1e0336e0de47b8b87/examples/QWIIC_GPS_Shield/QWIIC_GPS_Shield.ino#L30
No branches or pull requests
Can you provide the Stemma QT Pinout?
The text was updated successfully, but these errors were encountered: