https://github.com/wa1tnr/gps_wxprf-chassis
GPS weatherproof chassis test programs - Adafruit Feather GPS - SAMD21 target
https://github.com/wa1tnr/gps_wxprf-chassis
feather-m0 gps lcd morse-code piezo-buzzer rotary-encoder st7565
Last synced: about 1 month ago
JSON representation
GPS weatherproof chassis test programs - Adafruit Feather GPS - SAMD21 target
- Host: GitHub
- URL: https://github.com/wa1tnr/gps_wxprf-chassis
- Owner: wa1tnr
- Created: 2021-12-03T21:05:08.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-04-03T14:42:33.000Z (about 2 months ago)
- Last Synced: 2025-04-03T15:41:37.772Z (about 2 months ago)
- Topics: feather-m0, gps, lcd, morse-code, piezo-buzzer, rotary-encoder, st7565
- Language: C++
- Homepage:
- Size: 262 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
GPS in Weatherproof - Chassis code and mechanicals
Sat 4 Dec 11:45:17 UTC 2021
Wanted functional units to test individual hardware
enclosed in a single chassis.Chassis already wired (2017) and tested on old
firmware. This project aims to update and to
document to some extent. ;)the chassis is here:
[ https://www.adafruit.com/product/905 ]
the GPS module is here:
[ https://www.adafruit.com/product/3133 ]
(Looks like it, anyway - could be another one from them but this is probably it)
the USB pass-through is here:
[ https://www.adafruit.com/product/3258 ]
the buzzer (passive) is here:
[ https://www.adafruit.com/product/160 ]
the graphic LCD is here:
[ https://www.adafruit.com/product/250 ]
its pinout is here:
[ https://cdn-shop.adafruit.com/970x728/250-04.jpg ]
It's wired to Feather M0 Express on the top row, D11-D5
(contiguous, five pins exactly):```
-- snip --
Adafruit_GPS GPS(&GPSSerial);
134
135
136 // MOSI, SCK, A0, RST, CS
137 // ST7565 glcd(11, 10, 9, 6, 5);
138
139 // Use MOSI and SCK hardware pins on D29 and D30:
140 // ST7565 glcd(29, 30, 9, 6, 5);
141 ST7565 glcd(11, 10, 9, 6, 5); // stands as-is 4 Dec 2021-- snip --
```Note: D29 D30 old news - corrected to D11 and D10 there.
END.