Skip to content
New issue

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

Stemma QT Pinout #11

Open
everybodyfloats opened this issue Jun 28, 2024 · 2 comments
Open

Stemma QT Pinout #11

everybodyfloats opened this issue Jun 28, 2024 · 2 comments

Comments

@everybodyfloats
Copy link

Can you provide the Stemma QT Pinout?

@aleonnet
Copy link

aleonnet commented Jul 4, 2024

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);
}
..
}

@lewisxhe
Copy link
Contributor

lewisxhe commented Jul 4, 2024

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants