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
# Pure CircuitPython key scanner and USB HID firmware for Unicomp "MINI M" with RP2040 microcontroller | |
# Based on study of https://github.com/purdeaandrei/vial-qmk-mini-m/blob/9508763de706e50fb25111363fc1cab23ac8f95c/keyboards/unicomp/mini_m/justify_mike_smith/matrix.c#L20 | |
import gc | |
import micropython | |
import microcontroller | |
from adafruit_hid.keycode import Keycode as K | |
from adafruit_hid.keyboard import Keyboard | |
import usb_hid | |
import supervisor |
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
# SPDX-FileCopyrightText: 2016 Damien P. George | |
# SPDX-FileCopyrightText: 2017 Scott Shawcroft for Adafruit Industries | |
# SPDX-FileCopyrightText: 2019 Carter Nelson | |
# SPDX-FileCopyrightText: 2019 Roy Hooper | |
# SPDX-FileCopyrightText: 2020 Jeff Epler | |
# | |
# SPDX-License-Identifier: MIT | |
""" | |
`scorpio` - Neopixel strip driver using RP2040's PIO |
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
#!/bin/bash | |
# | |
# Steam installer for Debian wheezy (32- and 64-bit) | |
# | |
# Place into empty directory and run. | |
# | |
download() { | |
local url="$1" | |
local filename="$(basename "$url")" |