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
// prettier-ignore | |
{{flutter_js}} | |
// prettier-ignore | |
{{flutter_build_config}} | |
// Place this file at web/flutter_bootstrap.js in your Flutter Web project. | |
// IMPORTANT! The two tokens at the top of this file must not contain any spaces. | |
const APP_NAME = document.title | |
document.body.style.backgroundColor = "#000" |
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
"""Guide the user through pairing and save the necessary files.""" | |
# `python -m venv env` | |
# bash: `source ./env/bin/activate` | |
# powershell: `./env/scripts/activate.ps1` | |
# `pip install cryptography==2.1.3 requests==2.18.4` | |
# `python get_lutron_cert.py` | |
# your client key -> caseta.key | |
# your client certificate -> caseta.crt |
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/sh | |
# Usage: get_lutron_cert.sh [bridge_ip] | tee cert.pem | |
function error() { | |
echo "Error: $1" >&2 | |
exit 1 | |
} | |
login_server="device-login.lutron.com" |
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
bash -c 'while [[ "$(curl -s -o /dev/null -w ''%{http_code}'' localhost:9000)" != "200" ]]; do sleep 5; done' | |
# also check https://gist.github.com/rgl/c2ba64b7e2a5a04d1eb65983995dce76 |