This file contains hidden or 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
| blueprint: | |
| name: IKEA STYRBAR Remote Control | |
| description: Control devices with IKEA STYRBAR remote using ZHA | |
| domain: automation | |
| input: | |
| remote: | |
| name: STYRBAR Remote | |
| description: Select your STYRBAR remote device | |
| selector: | |
| device: |
This file contains hidden or 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
| import pandas as pd | |
| import numpy as np | |
| import plotly.express as px | |
| # to use | |
| # 1. update input_file | |
| # 2. update output file | |
| # NOTE: only works for csv downloaded from Fidelity | |
| # to download log into fidelity -> Accounts & Trade -- | |
| # -> Positions -> click on download (it's next to print icon) |
This file contains hidden or 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
| import requests | |
| from email.mime.multipart import MIMEMultipart | |
| from email.mime.text import MIMEText | |
| from email.mime.base import MIMEBase | |
| from email import encoders | |
| import time | |
| import requests | |
| import pandas as pd | |
| from bs4 import BeautifulSoup | |
| import smtplib |
This file contains hidden or 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
| /* | |
| * Capsense-LED-thing.c | |
| * | |
| * Created: 9/30/2016 10:25:57 PM | |
| * Author : firmware for Cap Sense LED thing | |
| * basic flow of the program is as follows | |
| * wait for Pin change interrupt on PB2 -> wake up the MCU -> PWM cycle LEDs on PB3 and PB0 go back to sleep and wait for pin change interrupt | |
| * interesting link: https://thewanderingengineer.com/2014/08/11/pin-change-interrupts-on-attiny85/ | |
| * Firmware for project at: http://murli-shenoy.com/?p=606 | |
| */ |
This file contains hidden or 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
| #File Archiver | |
| #Murli Shenoy - August 2017 | |
| #License - please keep this header intact, reuse/modify the code as you wish | |
| import shutil | |
| import datetime as dt | |
| import time | |
| import ctypes, sys, os, traceback, types | |