I hereby claim:
- I am devtrillo on github.
- I am devtrillo (https://keybase.io/devtrillo) on keybase.
- I have a public key ASDPiZCYRtkW6-D_GKB-ZY6Y4Kn46qTWxN2xnK_PKjDoxQo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
#This version will provide internet when using the hotspot IF an ethernet cable is plugged in" | |
#This script is for Buster ONLY | |
#unblock wifi | |
#needed after buster 20200205 | |
rfkill unblock all > /dev/null 2>&1 | |
#update packages |
from gpiozero import LED | |
from time import sleep | |
import sys | |
relay_a = LED("GPIO4") | |
relay_b = LED("GPIO17") | |
ht_file = "height.txt" | |
max_height = 400 |
const fetchMachine = Machine({ | |
id: "fetch", | |
initial: "submitConfig", | |
context: { | |
retries: 0, | |
}, | |
states: { | |
submitConfig: { | |
on: { | |
noGridVoltage: "SAVE_CT_RATED_CURRENT_INIT", |
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions |
#!/bin/sh | |
COMMIT_MSG_FILE=$1 | |
COMMIT_SOURCE=$2 | |
SHA1=$3 | |
COMMIT_MSG=$(cat "$COMMIT_MSG_FILE") | |
if [ -z "$BRANCHES_TO_SKIP" ]; then | |
BRANCHES_TO_SKIP=(master develop main) |