[last updated: 2022-03-15]
GPS module
hiking tracker prototypes
-----
- On this Page:
- Concept:
- Programming/Operation:
- Issues:
- Possible Configurations:
- Links/Refs:
----------------------------------------------
- Concept:
a portable (battery-powered) device
start and stop buttons
RTC module
LCD or other readout
ambiant temperature sensor
barometric/altitude sensor
GPS module
arduino MCU
- Programming/Operation:
Start button begins tracking.
Stop button pauses tracking.
Stop button second time stops tracking.
When tracking, display will show accumulated mileage and elevation gain.
Other options:
Stop button will display miles traveled, elevation climbed, average speed.
When not tracking, display shows current elevation and temperature.
- Issues:
- Accelerometers are apparently not capable of giving you distance or speed data,
because the integration calculations that are necessary have the downside of accumulating errors quickly and destroying accuracy.
- You must use a GPS to get distance and speed data.
- GPS gives you longitude and latitude data, which must be converted to distance
using Haversine great circle calculations.
- GPS' and barometric sensors can both give you elevation data,
and while one online source showed they indeed track each other closely,
there are surely trade-offs to whichever you choose.
Don't know what those are at this time.
------------------------------------------------------
- Possible Components/Configurations:
------------------------------------------------------
- Other refs:
.
.
.
eof