Skip to content

Instantly share code, notes, and snippets.

@ChristophCaina
ChristophCaina / s3-box3.yaml
Last active March 31, 2024 20:11
Code for the ESP32-S3-Box3
#------------------------------------------------------------------------------------#
# PIN Schematics #
# #
# GPIO-00 MCU-BOOT #
# GPIO-01 Speaker Mute-Status #
# GPIO-02 I2S MCLK #
# GPIO-03 Touch-Screen TT21100 Interrupt Pin #
# GPIO-04 ILI92xxx Display DC-Pin (SPI: CLK-Pin) #
# GPIO-05 ILI92xxx Display CS-Pin (SPI: MOSI-Pin) #
# GPIO-06 ILI92xxx Display SDA #
@ChristophCaina
ChristophCaina / cointrackinginfo.py
Created February 21, 2021 23:27 — forked from plenarius/cointrackinginfo.py
homeassistant component for cointracking.info API
"""
Balance of your account at cointracking.info
"""
from datetime import timedelta
import requests
import voluptuous as vol
from hashlib import sha512
import hmac
from urllib.parse import urlencode
import time