1

I'm looking for a GPS tracking device without screen or apps. I just need it to look for the current position of a bus and send it to a server through TCP/IP protocol. This process must be constant so I can have a real-time tracking. The bus already has a wireless access point.

What device can be useful? Do I need another piece of hardware to send the coordinates to the server? I have no experience but... can something like an arduino connected to the gps send the data?

Mark Booth
  • 4,253
  • 2
  • 25
  • 54
puma91
  • 119
  • 1

1 Answers1

2

I'm assuming you mean a passenger bus instead of a data bus. I'm also assuming you have access to a 12V output from the bus as well. If not you'll also need a battery.

Grab a Garmin GPS unit and an Arduino with Ethernet and USB. The Garmin outputs strings with the latitude and longitude over USB, which the Arduino can read in. Copy those strings to Ethernet packets and send it off via the TCP/IP connection. Easy as pie and one of the first projects I ever did with a microcontroller.

Josh Vander Hook
  • 5,362
  • 20
  • 40