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
# A script to add new Lutron Caseta devices using pylutron-caseta | |
# by Tanner Collin, Apache Licensed | |
import asyncio | |
import json | |
import pylutron_caseta | |
from pylutron_caseta.smartbridge import Smartbridge | |
pylutron_caseta.smartbridge.REQUEST_TIMEOUT = 15.0 | |
device_heard = None |
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
# Standard Notes protocol v004 reference decryption demo | |
# by Tanner Collin, MIT license | |
# | |
# Install dependencies in your Python 3 environment: | |
# pip install argon2-cffi requests pycryptodome | |
# | |
# do not use your real account | |
# use a fresh account so there's no 003 items | |
# or use this test account | |
email = '[email protected]' |