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
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQC9PktHcGvxzxT+PoIZfk4xuqDbKrnnottn/OAUkfw/sCkh57aXLDiSPcWfcXVyEy5FlI4eInAXFxHUfbwh8oyXrx7YtkPg7Sv3vIWDAYJM6f+c5YJg4sO3Vi5KjkQHccCkYpVS/QDGmFVaM3td0q74OJVs829tYf6X0TH2fXAgXH7E6bBHLKOMhkoAY58JbjA+6rwyJAbmt3aS7cPWLzJUh1tsAR2Oz8kyDrMDdAOm9TdoMagE7a0AUEIjsBP1aAhYuKJZPgsivLqA+iBdzZ2oHPCMmmxeOQ84HMfKNGiUHmP5hgkvCzwQsFHCWJ0RqtMJS4OKo363i5URffJtd3uQ67Fsph0r0fBUClQ8yiDdpbZ0l8uA/fIoNYJ4UpCO999Y49ikOG0e6sKZ+wfbbc2S0jQk4anP14J8sKpqWxNL2dpqa67GUpG2PEm4GWB/nvhJogk/QBaR8TAUqjNeqF/l92WOOfDhntq+p1vJeyPsuyZspchMbV90Bd1xlRpfh50= oriol@d0 |
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
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC+eK+pQ//i6/y+nKk89SLAnKh1TY8yls/GLOWOd0fTyFMsNSwiwpI8L+1kuE5FP//Fa9I/TfbYsTCnG2k7l6nWN1nRS9D5lfFVnswCTvc20heYwZ3IUFnNsLIxH1RMhSCaJOmmtmvdzq7wRxXeIEze29saqDDRu51ARQs4dkY+5XXlo1cpLnjk0bZ1FmiiExHUa+Sc+5OVI2BcvyU/Jgbq18XjkEhG4DblCfjUw2huvkx+O8w43hVWS3TWZmS3bK4F5FE5OSZhEubusSVXXMrPzALigpVdkfNzZCPMDv7Y45gSpOZUy4/r/E00csTpw9I0ysQclySAmzj26/Syk14L oriol@mini6 |
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 <SPI.h> | |
#include <WiFi101.h> | |
#include "arduino_secrets.h" | |
WiFiClient client; | |
char ssid[] = SECRET_SSID; | |
char pass[] = SECRET_PASS; | |
int status = WL_IDLE_STATUS; | |
#define PORT 7 |
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 <FlashAsEEPROM.h> | |
#include <FlashStorage.h> | |
#include <Adafruit_SleepyDog.h> | |
#include <Arduino_MKRENV.h> | |
#include <WiFi101.h> | |
#include <RTCZero.h> | |
#include <MQTT.h> | |
#include <MQTTClient.h> | |
#include "arduino_secrets.h" |
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
{ | |
"annotations": { | |
"list": [ | |
{ | |
"builtIn": 1, | |
"datasource": "-- Grafana --", | |
"enable": true, | |
"hide": true, | |
"iconColor": "rgba(0, 211, 255, 1)", | |
"name": "Annotations & Alerts", |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
#WinActivateForce | |
#SingleInstance force | |
runApp(exe) { | |
IfWinExist, ahk_exe %exe% | |
{ | |
IfWinActive | |
{ | |
WinMinimize | |
return |
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
var str = msg.payload; | |
var buf = []; | |
for (var i=0, l = str.length; i < l; i++) { | |
var ascii = str.charCodeAt(i); | |
buf.push(ascii); | |
} | |
buf.push(255); | |
buf.push(255); | |
buf.push(255); |
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
'use strict'; | |
var dashboard; | |
dashboard = { | |
title: 'this is just a test', | |
rows : [], | |
}; | |
dashboard.time = { |