Using https://volkovlabs.io/plugins/volkovlabs-echarts-panel/ you can create a pretty nice graph showing both wind speed & direction.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[{"id":"636f31ea74dbedaa","type":"tab","label":"Flow 1","disabled":false,"info":"","env":[]},{"id":"a78807bd17376bc8","type":"signalk-input-handler","z":"636f31ea74dbedaa","name":"signalk-input-handler navigation.headingMagnetic","context":"vessels.self","path":"navigation.headingMagnetic","source":"","x":310,"y":160,"wires":[["49a076745bacb191"]]},{"id":"e5031908a6fc98db","type":"debug","z":"636f31ea74dbedaa","name":"block","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"payload","targetType":"msg","statusVal":"","statusType":"auto","x":810,"y":100,"wires":[]},{"id":"a441ad6250acc7cb","type":"signalk-input-handler-next","z":"636f31ea74dbedaa","name":"","x":880,"y":180,"wires":[]},{"id":"49a076745bacb191","type":"switch","z":"636f31ea74dbedaa","name":"","property":"source.sentence","propertyType":"msg","rules":[{"t":"eq","v":"VHW","vt":"str"},{"t":"else"}],"checkall":"true","repair":false,"outputs":2,"x":610,"y":160,"wires":[["e5031908a6fc98db"],["a441ad6250acc7cb","b6e0bd0227045a3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// go on you labels pages | |
// eg https://github.com/cssnext/cssnext/labels | |
// paste this script in your console | |
// copy the output and now you can import it using https://github.com/popomore/github-labels ! | |
var labels = []; | |
[].slice.call(document.querySelectorAll(".label-link")) | |
.forEach(function(element) { | |
labels.push({ | |
name: element.textContent.trim(), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dummy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# This script allows you to chroot ("work on") | |
# the raspbian sd card as if it's the raspberry pi | |
# on your Ubuntu desktop/laptop | |
# just much faster and more convenient | |
# credits: https://gist.github.com/jkullick/9b02c2061fbdf4a6c4e8a78f1312a689 | |
# make sure you have issued |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<title>Signal K Sample Consumer</title> | |
</head> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"85a9b66d-d01e-4a5a-912d-4a6b13a4db6d": { | |
"uuid": "85a9b66d-d01e-4a5a-912d-4a6b13a4db6d", | |
"name": "aava", | |
"trueWindSpeedLabelUnit": "kn", | |
"speedThroughWaterLabelUnit": "kn", | |
"trueWindAngles": [ | |
0.9075712110370513, | |
1.0471975511965976, | |
1.3089969389957472, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Copyright 2015 Teppo Kurki <[email protected]> | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* Unless required by applicable law or agreed to in writing, software |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <OneWire.h> | |
#include <DallasTemperature.h> | |
#include <ESP8266WiFi.h> | |
#include <WiFiUdp.h> | |
#include <SPI.h> | |
#include <Wire.h> | |
#include <ESP8266WebServer.h> | |
#include <DNSServer.h> | |
#include <WifiServer.h> |
NewerOlder