This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm whether you accept or reject these cookies being set.

A cookie will be stored in your browser regardless of choice to prevent you being asked this question again. You will be able to change your cookie settings at any time using the link in the footer.

Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Read temperature from wind instrument
#2
There is something wrong with the XDR sentence generated by your device. According to NMEA specifications, the last field should be an unique ID of your device but you have an empty field:

your wrong sentence: $WIXDR,C,012.0,C,,*51
right sentence: $WIXDR,C,012.0,C,somethinghere,*51

Anyway, to do what you want, go to the file: /home/pi/.config/openplotter/classes/datastream.py and replace the line 345:


Code:
if transducer.id=='I2CT':

by

Code:
if transducer.id=='I2CT' or transducer.id=='':

it can work.
Reply


Messages In This Thread
Read temperature from wind instrument - by Arne - 2016-07-18, 11:26 PM
RE: Read temperature from wind instrument - by Sailoog - 2016-07-19, 12:11 PM

Forum Jump:


Users browsing this thread: 1 Guest(s)