I hereby claim:
- I am tadeubas on github.
- I am tadeubas (https://keybase.io/tadeubas) on keybase.
- I have a public key ASDzzQ61fTpXlCFi16OrOqfcZngtF21CQWN67z_doXnSAwo
To claim this, I am signing this object:
| #!/bin/bash | |
| # Read previous notification ID if exists | |
| NOTIFY_ID_FILE="/tmp/battery_notify_id" | |
| NEW_ID=-1 | |
| if [ -f "$NOTIFY_ID_FILE" ]; then | |
| ID=$(cat "$NOTIFY_ID_FILE") | |
| else | |
| ID=0 | |
| fi |
I hereby claim:
To claim this, I am signing this object:
| import lcd | |
| from krux.display import Display | |
| logo = """ | |
| ██ | |
| ██ | |
| ██ | |
| ██████ | |
| ██ | |
| ██ ██ |
| from fpioa_manager import * | |
| from Maix import I2S, GPIO | |
| import audio | |
| ########### settings ############ | |
| WIFI_EN_PIN = 8 | |
| AUDIO_PA_EN_PIN = None # Bit Dock and old MaixGo | |
| # AUDIO_PA_EN_PIN = 32 # Maix Go(version 2.20) | |
| # AUDIO_PA_EN_PIN = 2 # Maixduino |
| import image | |
| import lcd | |
| import sensor | |
| import os | |
| import time | |
| from machine import SDCard | |
| lcd.init(freq=15000000) |