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
#!/usr/bin/env python | |
# lgairctrl.py | |
# 2024-03-01 | |
# Public Domain | |
""" | |
A utility to send an infrared command to certain, unknown models of LG Air Conditioners equipped with infrared. This utility currently supports the United States model LW1022IVSM with Fahrenheit temperature control (and probably many others). This script is meant to be run on a Raspberry Pi with pigpiod installed and an infrared LED module, or a bare IR LED with NPN transistor base connected to one of the GPIO pins. | |
To send a command use the following format. All options are required. |
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
# This script reads the data from a JK BMS over USB-TTL and formats | |
# Credit to https://github.com/PurpleAlien/jk-bms_grafana | |
# Instructions: | |
# Change Serial port on line 17 and run with python3+. Dumps register 0x83 (total pack voltage) to verify BMS communication. | |
import time | |
import sys, os, io | |
import struct |
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
def getCoinbaseData(path): | |
import urllib2, json | |
import hmac | |
import hashlib | |
import base64 | |
import time | |
apiKey = '<YOUR API KEY>' | |
apiSecret = '<YOUR API SECRET>' | |