ianhandel / arduino_wind

Arduino sketch and schematics for anemometer with TFT display and NMEA 0183 output
MIT License
1 stars 0 forks source link

arduino_wind

Arduino sketch and schematics for anemometer with TFT display and NMEA 0183 output

Uses generic 2.8 TFT

I used Jaycar custom libraries from here

And followed excellent instructions from Pete's soapbox

Especially this...

Fix the hardware identifier

  1. This is the bit that took a while to figure out.
  2. For reference, the serial number on my TFT LCD is: QR4 5265S01 G3/2 TP28017.
  3. _Locate line 60: uint16t identifier = tft.readID();
  4. _Change it to: uint16t identifier = 0x9341;
  5. Or, equivalently, change line 84 to: tft.begin(0x9341);

And added enhanced GFX library with fonts from here