The Implemented GPS device for speed, odometer, etc
Building a Tracking and Metrics device using a GPS Module
- GPS (Global positioning system) modules are commonly used now a days for various tasks: navigation for maps, tracking speed, Geo-location etc. A couple of decades ago around 2002-3 they were not as common and there was need to use such a module for the Railways for tracking speed, odometer, maintenance information, etc.
- One recent usage of such a device can be found here on my blog: Prototype Bangla Rail Remote Fuel Monitoring
- The above was the device that was built for the Railways. It had 2 parts to it, a front end part that implemented the UI and a back end part that would take the GPS module readings, analyse and store information, etc
- As this had to be a tiny system, a Linux SBC was chosen and in those days a tiny Linux distribution called CRUX was used. It could work off 16MB RAM and some 128MB flash and had support for USB flash for data storage.
- It was indeed fun to write an NMEA 0183 parser from scratch and making sense of the various GPS statements returned and their implications. GPS modules return statements like GPRMC, GPGGA, GPGSV, etc that provide highly accurate date and time information, satellites in view, the number of satellites used for calculation, the latitude and longitude information, etc. Using this one can implement many use-cases, say for showing track information on a map, traffic information, etc
- The backend CRUX system was implemented by me and would interact with the microcontroller at the frontend for user inputs.
- A few numbers were tested for a period of time for the Railways.
GPS integrated with display and uC
- To relive the nostalgia of having built such a system years ago, and also to track various every day activities (trips, walks, etc) decided to build a current age device, given the maturity of GPS and its usage.
- Implementing this with the usual suspects: ESP/Arduino, an OLED 1.3 inch display and also an NEO 6M GPS Module for 200 Rs.
- The GPS price for too good to be true. So immediately bought one. But it was kept in cold storage because of the numerous things to parallely do and trying the same chip after say a month or so, it was found to be non-functional. Tried various things and in frustration ripped off the GPS label. Turns out there was another older label inside the new one.🤣 So these local hobby parts vendor might have got cheap refurbished ones and selling them here in Bangalore. Scam !!
The old gps chip with double labels sold on Online stores
- A New slightly more expensive gps chip was bought for 500 Rs and it had external antenna. The external antenna helps getting GPS fix faster. Else in some cases, one needs to wait a long time
- This also had it problems (I think old devices are being sold off) but luckily got a replacement.
- The berg wire connection was made with the controller and using the standard GPS libraries: TinyGPS, GPSplus, etc a quick frontend for the Oled display was built. The earlier device had taken a month or so to build, now this one took just a couple of days.
- This device now shows the speed of travel, the direction, date and the time (which really is in GMT and needs to be converted to local time) and using the latitude and longitude readings, the odometer (distance) calculation can be done.
- Also a kind soul Mr. SG helped me assemble this circuit on a generic PCB.
- Made this device portable with a Lithium Ion battery, LiOn battery charger/booster circuit, switches, etc. Most important part of the assembly was the use of a local sweet vendor's plastic box. It was the right fit and of course the sweets are tasty too.
- Below is the video showing off the capabilities and being used in the car
- As can be seen, shows the right date/time and shows speed and does the odometer calculation and displays it.
- This works well with an error of around 3-5% in a car. On person carrying of this box is not reliable as the GPS antenna moves too much. Maybe will build a GPS antenna holder that can fit on my bag while walking.
- Also next need to interface an SD CARD and store the GPS information and do interesting things.