Skip to content

Instantly share code, notes, and snippets.

View rroemhild's full-sized avatar

Rafael Römhild rroemhild

View GitHub Profile
@rroemhild
rroemhild / dialup.sh
Last active April 15, 2018 09:49
congstar wvdial config
#!/bin/bash
(
while : ; do
wvdial congstar
sleep 10
done
) &
@rroemhild
rroemhild / Door_Window_Sensor.js
Last active August 20, 2019 10:52
LoRaWAN Tabs decoder for The Things Network Console
/**
* Payload example on port 100: 01FB3700001F0000
**/
function Decoder(bytes, port) {
var decoded = {};
if (port === 100) {
decoded.open = bytes[0] & 0x01;
decoded.voltage = (25 + (bytes[1] & 0xf)) / 10;