Are they located anywhere? Neither Onion nor Hologram have anything on their site, and the box came with zip.
M
Best posts made by Matthew Butch
-
Hologram Cellular Expansion Docs?
-
RE: [Project] Display GPS Location on OLED
Very cool- pretty similar to what I did. I added an animation while it was getting the fix. Just starts marching across the screen. I'll have to upload my script at some point.
FYI, you don't need to save a file with the data. You can call ubus directly:
gpsDataProcess = Popen(["ubus", "call", "gps", "info"], stdout=PIPE) gpsDataJSON = gpsDataProcess.communicate()[0] gpsDataProcess.stdout.close() if ( gpsDataProcess.returncode == 0 ): # gps available gpsData = json.loads(gpsDataJSON)