I hereby claim:
- I am ubergesundheit on github.
- I am geraldpape (https://keybase.io/geraldpape) on keybase.
- I have a public key whose fingerprint is 2C17 F396 7A26 B956 BE90 7727 71AB 089A D4F7 C544
To claim this, I am signing this object:
<? | |
// | |
// [ BUY BTC & ETH DAILY ON BITSTAMP ] | |
// by @levelsio | |
// | |
// 2017-08-23 | |
// | |
// 1) buy $40/day BTC | |
// 2) buy $10/day ETH | |
// |
# /etc/systemd/system/cpu_temp.service | |
[Unit] | |
Description=HTTP Post cpu temperature to endpoint | |
[Service] | |
Type=oneshot | |
# set your post url as normal environment variable | |
# should have the form https://ingress.opensensemap.org/boxes/<boxID>/<sensorID> | |
Environment="URL=https://ingress.opensensemap.org/boxes/<boxID>/<sensorID>" |
license: mit |
luftdaten.info an openSenseMap senden |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>openSenseMap Turf</title> | |
<meta charset="utf-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" /> | |
<link rel="stylesheet" type="text/css" href="https://unpkg.com/notie/dist/notie.css"> | |
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script> | |
<script src="https://unpkg.com/[email protected]/dist/simple-statistics.min.js"></script> |
#include <rn2483.h> | |
#include <SoftwareSerial.h> | |
#define APP_EUI "70B3D57ED000042A" | |
#define APP_KEY "20FA476202AABBD1FCD1B91EFAEC7B98" | |
#define RESET D7 | |
#define PIN_SERIAL1_TX D5 | |
#define PIN_SERIAL1_RX D6 | |
SoftwareSerial mySerial(PIN_SERIAL1_RX, PIN_SERIAL1_TX); // RX, TX !! labels on relay board is swapped !! |
#include <rn2483.h> | |
#include <SoftwareSerial.h> | |
#define APP_EUI "70B3D57ED000042A" | |
#define APP_KEY "20FA476202AABBD1FCD1B91EFAEC7B98" | |
#define RESET D7 | |
SoftwareSerial mySerial(D6, D5); // RX, TX !! labels on relay board is swapped !! | |
//create an instance of the rn2483 library, |
{ | |
"description": "Vega Lite openSenseMap", | |
"data": { | |
"url": "https://api.opensensemap.org/boxes/data?boxid=578207d56fea661300861f3b&phenomenon=TagesLeistung&separator=comma&from-date=2016-08-17", | |
"format": { | |
"type": "csv" | |
} | |
}, | |
"mark": "line", | |
"encoding": { |
I hereby claim:
To claim this, I am signing this object:
"use strict" | |
const BASEURL = "https://api.opensensemap.org" | |
const BOXES_URL = `${BASEURL}/boxes` | |
const SINGLE_DAY = 86400000 | |
const SINGLE_WEEK = SINGLE_DAY * 7 | |
let now = Date.now() |