PaddyB
SKSignal K
•Created by jimseng on 1/18/2025 in #questions
Trying to us GPIO in Node Red on Pi 5 has trashed my signalk
istr talk on the openplotter forum about Pi5 gpio, might be worth a search or an ask on there
5 replies
SKSignal K
•Created by Blaise on 12/28/2024 in #questions
SignalK and microPython
the git is very old & I'm not a programmer so messy and probably inefficient but feel free to grab anything whih looks useful. https://github.com/boatybits/boatymonpy/blob/master/boatymon.py
8 replies
SKSignal K
•Created by Blaise on 12/28/2024 in #questions
SignalK and microPython
I use UDP to send which seems to work OK,
def insertIntoSigKdata(self, path, value):
_sigKdata = { "updates": [ {"values":[] }]} _sigKdata["updates"][0]["values"].append( {"path":path, "value": value }) self.sendToUDP(ujson.dumps(_sigKdata),'10.10.10.1', self.conf['sigK_udp-port'])
try: self.debugPrint1(_sigKdata) except Exception as e: print("debug print error=",e)
def sendToUDP(self, message, udpAddr, udpPort): try: s = usocket.socket(usocket.AF_INET, usocket.SOCK_DGRAM) s.sendto(message, (udpAddr, int(udpPort))) s.close() except Exception as e: print("UDP sending error=",e) pass
_sigKdata = { "updates": [ {"values":[] }]} _sigKdata["updates"][0]["values"].append( {"path":path, "value": value }) self.sendToUDP(ujson.dumps(_sigKdata),'10.10.10.1', self.conf['sigK_udp-port'])
try: self.debugPrint1(_sigKdata) except Exception as e: print("debug print error=",e)
def sendToUDP(self, message, udpAddr, udpPort): try: s = usocket.socket(usocket.AF_INET, usocket.SOCK_DGRAM) s.sendto(message, (udpAddr, int(udpPort))) s.close() except Exception as e: print("UDP sending error=",e) pass
8 replies
SKSignal K
•Created by Claeszv on 12/20/2024 in #questions
Path not showing in signalK Data browser
3 replies
SKSignal K
•Created by x4y5z6 on 3/6/2024 in #questions
Backup of Kip from CerboGX to PC
node red is another way
15 replies
SKSignal K
•Created by addboy58 on 11/18/2024 in #questions
Data translation
if there are equivalent 0183 sentences then have a look at the "Convert Signal K to NMEA0183" app, N2k coming in should get converted to signalk
4 replies
SKSignal K
•Created by PaddyB on 11/15/2024 in #plugins-and-webapps
PaddyB - I've lost sun & moon times, sure there...
Found it! Was in derived data.
2 replies
SKSignal K
•Created by PaddyB on 11/14/2024 in #server
PaddyB - Broke the server.. I added a udp conne...
note to self.. add settings.json to the daily node red backup flow 😁
6 replies
SKSignal K
•Created by PaddyB on 11/14/2024 in #server
PaddyB - Broke the server.. I added a udp conne...
Dunno what happened there, deleted old settings, went back in & enabled security then copied across manually the pipeElements sections & we're back in action 🤔
6 replies
SKSignal K
•Created by PaddyB on 11/14/2024 in #server
PaddyB - Broke the server.. I added a udp conne...
If I delete settings.json it works
6 replies
SKSignal K
•Created by Mastiff on 8/10/2024 in #questions
Is it possible to get maps in an easier way than MapBox?
you could try opencpn & download mbtiles with sasplanet. On android only though. Sasplanet has navionics and satellite images which it can save in a format opencpn can read. Sat images are great!! 😎
230 replies
SKSignal K
•Created by LinnJS on 4/5/2024 in #questions
Help setting up influxdb2 with signalk
Many people use influx Web page to build the query then copy paste into grafana.
10 replies