JasonPittenger

Results 10 comments of JasonPittenger

NMEA sentence nZDA is supposed to give you time zone information. information: ZDA Descripiton: Time and date information. Type: Output Format: $--ZDA,UTCtime,day,month,year,ltzh,ltzn*CS Example: $GPZDA,235316.000,02,07,2011,00,00*51 Field name Format Parameter Description 1...

I know it's a year later, but the internet is forever. Someone else is bound to have a similar question. I was unaware until today that the NMEA sentence GPZDA...

I see you define the baud for GPS, but that is never used again. static const uint32_t GPSBaud = 9600; That's fine, because you later initialize two serial ports at...

gps.encode() processes the data one byte at a time. You really don't want to be testing the return for every byte. The best bet is to separate the serial reading...

Is anyone looking into this issue? I already have a soft power-down routine that uses the touch buttons. However, I'm using the m5 in an environment where I am often...

I added my own version, though it is not in the library. Here is my example code. `//Let's read the power button from the m5 AXP chip Wire1.beginTransmission(0x34); Wire1.write(0x46); Wire1.endTransmission();...

Are you using IO pin 25 for anything? This pin is the data pin for the LEDs.

One change I made just after posting this, was to turn on the pull up on the interrupt pin for the touch controller. I was getting some phantom touches and...

I have not tried it using interrupts and I've always used core 0 task at priority 1. How do you have the IDE set up? I have mine set to...

@capedra when using dual core, you have to make sure not to share an interface across the cores. M5.update(); uses I2C to read from the touch controller. You must not...