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
try: | |
import urequests as requests | |
except: | |
import requests | |
try: | |
import ujson as json | |
except: | |
import json |
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 urequests as requests | |
import json | |
import network | |
import secrets | |
from picographics import PicoGraphics, DISPLAY_GALACTIC_UNICORN as DISPLAY | |
from galactic import GalacticUnicorn | |
import jpegdec, math, ntptime, time | |
import _thread | |
blink=0 |
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
# SPDX-FileCopyrightText: 2021 Sandy Macdonald | |
# | |
# SPDX-License-Identifier: MIT | |
# A simple example of how to set up a keymap and HID keyboard on Keybow 2040. | |
# You'll need to connect Keybow 2040 to a computer, as you would with a regular | |
# USB keyboard. | |
# Drop the `pmk` folder |
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
#!/usr/bin/env python3 | |
from atproto import Client, client_utils | |
import requests, argparse | |
import apis | |
accountname = apis.masto_account_name | |
accessToken = apis.masto_accessToken | |
bskyaccount = apis.bsky_account_name | |
bskypassword = apis.bsky_account_password |
OlderNewer