sparkfun / Qwiic_Ublox_Gps_Py

https://qwiic-ublox-gps-py.readthedocs.io/en/latest/index.html
Other
69 stars 41 forks source link

Raw Data Output #19

Closed shubham9436 closed 1 year ago

shubham9436 commented 3 years ago

Is it possible to get the raw data? If so, can someone please provide an example.

shadyrobots commented 3 years ago

check out ubxtranslator (used at the heart of this code) https://github.com/dalymople/ubxtranslator

cls_name, msg_name, payload = parser.receive_from(port) where payload is the raw data

or go into core.py under receive_from and tap into buff

edspark commented 1 year ago

Yeah I think @shadyrobots is correct, assuming that's what you intended with your question @shubham9436. Cheers!