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
//simple button masher esp32 ttgo | |
#include <TFT_eSPI.h> | |
#include <SPI.h> | |
#define BUTTON1PIN 35 | |
#define BUTTON2PIN 0 | |
TFT_eSPI tft = TFT_eSPI(); | |
void IRAM_ATTR toggleButton1() { |
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
from ecdsa import ellipticcurve | |
import hashlib | |
import base58 | |
# Compressed Public Key Config | |
compressed_public_key = True | |
_a = 0x0000000000000000000000000000000000000000000000000000000000000000 | |
_b = 0x0000000000000000000000000000000000000000000000000000000000000007 |