PaddyB
PaddyB
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!! 😎
170 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
SKSignal K
Created by Hannes on 7/22/2024 in #questions
smoothing of apparent wind data
I much prefer looking at influx data in grafana to see trends for most data, max 5 minutes to see the gusts. Much more useful imho
30 replies
SKSignal K
Created by ray_sabado on 3/21/2024 in #questions
Daily Trip Logs
Configurable would be nice 😎 On long passages I find the local noon distance run becomes a big part of the day, with GPS against through the water log interesting to see what the current has been doing 👍🙏
22 replies
SKSignal K
Created by ray_sabado on 7/18/2024 in #sensesp
ray_sabado - We are adding three sensors to our...
I use ds18b20 thermometer sensors, very useful. One on cylinder head, exhaust & alternator.
10 replies
SKSignal K
Created by PaddyB on 3/31/2024 in #sensors
PaddyB - Not really a signalk issue but latest ...
back to this one, upgraded to influx 2.7.6-1 yesterday and all seems fine again 👍
3 replies
SKSignal K
Created by Spenda4life on 4/8/2024 in #questions
Signal k NMEA0183 output
No description
5 replies
SKSignal K
Created by Spenda4life on 4/8/2024 in #questions
Signal k NMEA0183 output
No description
5 replies
SKSignal K
Created by Spenda4life on 4/8/2024 in #questions
Signal k NMEA0183 output
No description
5 replies
SKSignal K
Created by LinnJS on 4/5/2024 in #plugins-and-webapps
LinnJS - Hello everyone I am trying to setup a ...
15 replies
SKSignal K
Created by Johnathan B on 4/2/2024 in #questions
Help Posting Values to SK
I send from an ESP32, it connects to openplotter network then this sends the data to a connection set up in the server as you posted above > def insertIntoSigKdata(self, message): try: UDP_IP = "10.42.0.1" UDP_PORT = 10120 sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) sock.sendto(message, (UDP_IP, UDP_PORT)) sock.close() except Exception as e: print("Send signalk error = ",e) The ESP connection wifi function is a mess & won't reconnect if the Pi is down for a while so won't post that 😁 Been running fine for must be years now though constantly.
11 replies
SKSignal K
Created by Johnathan B on 4/2/2024 in #questions
Help Posting Values to SK
not sure it this helps but I use this to create sigk data in micropython, then send it UDP> def createSigKdata(self, path, value): try: _sigKdata = {"updates": [{"values":[]}]} _sigKdata["updates"][0]["values"].append( {"path":path,"value": value}) MESSAGE = (ujson.dumps(_sigKdata)) return MESSAGE except Exception as e: print("Create signalk error occurred = ",e)
11 replies