Hi @felmue
Thank you for your reply. Found the GPS Module thanks to your help! But i still don't get it running. As soon as i setup the GPS interface the device crashes. This is my code:
from m5stack import *
from m5stack_ui import *
from uiflow import *
import module
screen = M5Screen()
screen.clean_screen()
screen.set_screen_bg_color(0xffffff)
try:
gps = module.get(module.GPS, (16, 17))
except:
pass
label = M5Label('Loading', x=107, y=113, color=0xff0000, font=FONT_MONT_14, parent=None)
The numbers RX/TX Numbers 16/17 i've got from the board and the documentation. With this code the device keeps crashing without any further error message.