Vehicle Fleet Monitoring
Last updated
Last updated
Use Hologram's cellular network to monitor a fleet of vehicles using OBDII, Raspberry Pi, GPS, and GSM.
× | 1 | |||||
× | 1 | |||||
| × | 1 | ||||
OBDII ELM327 Reader | ||||||
| × | 1 | ||||
GPS Module (Generic) | ||||||
OPTIONAL | ||||||
| × | 1 | ||||
Jumper wires (generic) | ||||||
| ||||||
Adafruit.io | ||||||
I'm glad you asked! There are numerous reasons to monitor a fleet of vehicles. Some organizations just want to track location, which is essentially just asset tracking, while others want to monitor the health of a vehicle. This can be helpful when needing to ensure that your vehicles are getting the maintenance they need. This improves safety and provides an insight into how to improve operations. It also helps in deploying a vehicle to where it can best serve.
Easy! For the next couple of weeks I'm going to be documenting my journey as I set out to build a DIY solution using off-the-shelf maker friendly hardware. I've already listed the bare minimum low-cost parts needed.
I'll be using a USB OBDII adapter (see link above) connected to a Raspberry Pi with a standard GPS module wired to the GPIO pins. With the Hologram Nova, a USB GSM modem, I'll be able to add remote connectivity to the vehicle tracker. Hologram.io provides amazing coverage at a very maker friendly cost. Best part is, someone could easily take this hack and turn it into a product ready to deploy.
There are two parts to this.
The first being the piece of code that runs to collect relevant information from the OBDII reader periodically and couples it with GPS data to then send as a data message through the Hologram.io network.
In the interest of transparency, I'm working through building this in nodejs, however the OBD-II libraries seem to be very outdated, so the first hurdle is writing out a useable implementation using the node-serialport library. If node doesn't work out this part might get built in python! If anyone reading this happens to have had experience with this, please reach out!
The second part is the web app that will be used to view a realtime map with vehicle data. As this project moves along I hope to build out a way to provision new vehicles easily. This web app will be written in React, a javascript framework for building progressive web apps.
If you want to follow along and perhaps even help contribute, you can order the exact parts and contribute to the GitHub project!
https://github.com/HologramEducation/hologram-vehicle-monitor
Node.JS didn't work out. I spent a lot of time trying to get the node libraries working and found that a lot of them had been neglected a long while and with so many version changes of node in that time, a few things didn't work out as efficiently. So I've switched to Python, which I think is better for beginners as it has less dependancies.
I started off with what I didn't realize was a knockoff of the USB ScanTool OBDII reader. This caused some compatibility issues as it had no firmware support. I reccomend using this one https://www.amazon.com/gp/product/B005ZWM0R4/ref=oh_aui_detailpage_o00_s00?ie=UTF8&psc=1
Alright, with that in mind, lets get started!
You should have:
Raspberry Pi 3
Hologram Nova USB Modem
Burn the latest Raspbian image to a raspberry pi. I recommend Etcher.io - Its a lightweight tool that figures out all the magic of burning an image to an SD card.
You can find the latest image here. Choose whatever flavour works for you.
https://www.raspberrypi.org/downloads/raspbian/
You'll need a Hologram.io account to provision your SIM card that comes included with your Nova. All you really need to do is activate your SIM card since we won't be using the Hologram data routers. We will be using the Python SDK to get the cell tower location and the Hologram CLI to connect to the internet so we can relay information to Adafruit.io
This requires a mastery of USB ports. Not for the faint of heart.
Go to Adafruit.io and set up an account.
Goto Feeds -> Actions -> Create A New Feed and name it fleet
Goto Dashboards and create a new dashboard.
Start by adding a Map view. Set Hours of History to 9999 for a full historical view of GPS locations.
Repeat this with the Dial module. Use the same feed, we send both sensor value and GPS location up in the same message, it grabs the first value sent and display it, which in our example is Speed.
Grab your AIO Key and stash it for when we run the code. There is a link from the main page.
If you are more curious about the API or the dashboard visit these links.
https://learn.adafruit.com/adafruit-io/mqtt-api
https://cdn-learn.adafruit.com/downloads/pdf/adafruit-io-basics-gps.pdf
There are a few ways you can do this.
Monitor and Keyboard
SSH
I prefer serial because it makes it easier when you are working out of a car and don't have wifi. Adafruit has a great guide on that https://learn.adafruit.com/adafruits-raspberry-pi-lesson-5-using-a-console-cable/
ProTip: On the Pi 3, when bluetooth is enabled it interferes with the serial pins. Mount the SD card on a computer and edit the config.txt file and add this line.
Finally! Lets do this!
All the code and instructions can be found at the github repository here https://github.com/HologramEducation/hologram-vehicle-monitor
Run the following in a terminal, it will install the Hologram, Adafruit-IO and OBD Python SDKs as well as the Hologram CLI.
Clone this repo
Create a file adafruitConfig.py with the following:
Spin up the network connection through the NOVA
Plugin the other end of the OBD ScanTool to an active vehicle.
Start the script
So you'll notice every two minutes data is being sent to the Adafruit cloud. You can change this interval by editing the sleep time at the bottom of the main.py script.
Now go to your adafruit dashboard, you should see the map hone in on your location and the dial should show the speed of your vehicle!
I hope you enjoyed this project and I hope you'll help contribute and share what you do with it! This was my first time creating a Python project so I'm sure it can be improved!
The main example send up values returned from the SPEED command. Below is a basic example of how to use the OBD python library.
Here is a link to all the supported commands: https://github.com/brendan-w/python-OBD/blob/master/docs/Command%20Tables.md
Give different ones a shot and see if there is data that you might find more useful from your vehicle.
Relay information from an OBD-II reader to an MQTT broker via Hologram Nova — Read More
Latest commit to the master branch on 4-26-2018
IntermediateFull instructions provided9,706
1 / 3