- Improved power management
- Updatable firmware (2023-12-09)
- Use
pico-flashloader
preload stage (2023-09-04) - Flash test image hardcoded into firmware (2023-12-03)
- Implement I2C firmware update protocol (2023-12-08)
- Use
- Shutdown / rewake command (2023-11-30)
- Real time clock support
- Sticky modifier keys
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
#include <tonc.h> | |
#include <Register/Utility.hpp> | |
#include <Chip/Unknown/Nintendo/GBA.hpp> | |
#include <Register/Register.hpp> | |
using namespace Kvasir::Register; | |
/* RGB15-specific types */ | |
enum class RGB15ComponentName : std::uint8_t { |
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
#!/usr/bin/python3 | |
import sys | |
key = 'API_KEY' | |
if len(sys.argv) > 1 and sys.argv[1] == 'cli': | |
zipcode = sys.argv[2] | |
else: | |
import cgi, cgitb, os, codecs |
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
import Text.ParserCombinators.Parsec | |
import Control.Monad | |
import System.IO (hFlush, hPutStr, hPutStrLn, hGetLine, stdin, stdout) | |
-- Parser | |
data Val = Op Char Val | |
| Atom Int | |
| Cell Val Val |
I hereby claim:
- I am excelangue on github.
- I am excel (https://keybase.io/excel) on keybase.
- I have a public key whose fingerprint is 61CA 64F8 7D8A 9211 0021 24D5 3F58 0230 7F0B AC98
To claim this, I am signing this object:
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
#!/usr/bin/python | |
# arduino rpi | |
# 8 -> 13 (gpio 3) | |
# 9 (pwm) -> 33 (pwm1) | |
# 10 (pwm ss) -> 23 (gpio 14) | |
# 11 (pwm mosi) -> 19 (gpio 12) | |
# view from front of CABLE | |
# annotated with colors of crappy $1 ebay link cable |
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
// view from front of CABLE | |
// annotated with colors of crappy $1 ebay link cable | |
// T | |
// 1 3 5 1 3v, xxx 3 SI, wht 5 SC, red | |
// 2 4 6 2 SO, blk 4 SD, grn 6 GN, xxx | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <stdint.h> | |
#include <unistd.h> |
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
# https://gist.github.com/excelangue/f57822e37a9aa20f3168 | |
# types | |
nil = 0 | |
tnum = 1 | |
tcons = 2 | |
tsym = 3 | |
tproc = 4 | |
tfastcall = 5 |