├── Luckfox-Lyra ├── Build your own image.md ├── Command-Launcher-Jailbreak.md ├── Known-working-programs.md ├── Luckfox Ubuntu.md ├── Lyra Cross Compiler.md ├── Lyra Ubuntu Install.md ├── Pi -Zero-Build-Env.md ├── README.md ├── fix.sh └── tv │ ├── Makefile │ └── tv.c ├── MircoPython ├── Hamurabi.py ├── README.md ├── boot files │ ├── boot.py │ ├── lib │ │ ├── colorer.py │ │ ├── default_style.py │ │ ├── highlighter.py │ │ ├── picocalc.py │ │ ├── picocalc_system.py │ │ ├── pye.py │ │ ├── sdcard.py │ │ └── vt.py │ └── main.py ├── chatgpt.py ├── netchk.py └── secrets.py ├── PicoMite ├── DS3231 │ ├── README.md │ ├── screenshot.png │ ├── setrtc.bas │ └── settime.bas ├── PicoCalc-dht22-2.bas ├── PicoCalc-dht22.bas ├── README.md ├── cig.bas ├── eliza.bas ├── hamurabi.bas ├── hartnell │ ├── README.md │ ├── asimovian.bas │ ├── chateau.bas │ ├── citadel.bas │ ├── werewolves.bas │ └── werewolves2.bas ├── lunar.bas ├── onboot.bas ├── pico-ed.bas ├── pico-edit.bas ├── picogotchi.bas ├── pipboy │ ├── README.md │ ├── assets │ │ ├── aim.png │ │ ├── gear.png │ │ ├── gun.png │ │ ├── helm.png │ │ ├── nuc.png │ │ ├── radio.png │ │ ├── shld.png │ │ ├── vb.png │ │ ├── volt.png │ │ └── world-map.jpg │ ├── edit.txt │ ├── music │ │ ├── Appalachia Radio.mp3 │ │ ├── Diamond City Station.mp3 │ │ ├── Galaxy News Radio.mp3 │ │ ├── Wastelanders Radio.mp3 │ │ └── World-on-fire.mp3 │ ├── pipboy.bas │ ├── pipedit.bas │ └── screenshot.jpg ├── rnddungeon.bas └── tomato │ ├── Readme.md │ ├── assets │ ├── ANGRY.png │ ├── AWAKE.png │ ├── BORED.png │ ├── BROKEN.png │ ├── COOL.png │ ├── DEBUG.png │ ├── DEMOTIVATED.png │ ├── EXCITED.png │ ├── FRIEND.png │ ├── GRATEFUL.png │ ├── HAPPY.png │ ├── INTENSE.png │ ├── LONELY.png │ ├── LOOK_L.png │ ├── LOOK_L_HAPPY.png │ ├── LOOK_R.png │ ├── LOOK_R_HAPPY.png │ ├── MOTIVATED.png │ ├── SAD.png │ ├── SLEEP.png │ ├── SLEEP2.png │ ├── SMART.png │ ├── UPLOAD.png │ ├── UPLOAD1.png │ └── UPLOAD2.png │ ├── screenshot1.png │ ├── screenshot2.png │ └── tomato.bas ├── Pictures ├── Pico-Pinout.svg └── PicoCalc-Pinout.png └── README.md /Luckfox-Lyra/Build your own image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/Luckfox-Lyra/Build your own image.md -------------------------------------------------------------------------------- /Luckfox-Lyra/Command-Launcher-Jailbreak.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/Luckfox-Lyra/Command-Launcher-Jailbreak.md -------------------------------------------------------------------------------- /Luckfox-Lyra/Known-working-programs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/Luckfox-Lyra/Known-working-programs.md -------------------------------------------------------------------------------- /Luckfox-Lyra/Luckfox Ubuntu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/Luckfox-Lyra/Luckfox Ubuntu.md -------------------------------------------------------------------------------- /Luckfox-Lyra/Lyra Cross Compiler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/Luckfox-Lyra/Lyra Cross Compiler.md -------------------------------------------------------------------------------- /Luckfox-Lyra/Lyra Ubuntu Install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/Luckfox-Lyra/Lyra Ubuntu Install.md -------------------------------------------------------------------------------- /Luckfox-Lyra/Pi -Zero-Build-Env.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/Luckfox-Lyra/Pi -Zero-Build-Env.md -------------------------------------------------------------------------------- /Luckfox-Lyra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/Luckfox-Lyra/README.md -------------------------------------------------------------------------------- /Luckfox-Lyra/fix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/Luckfox-Lyra/fix.sh -------------------------------------------------------------------------------- /Luckfox-Lyra/tv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/Luckfox-Lyra/tv/Makefile -------------------------------------------------------------------------------- /Luckfox-Lyra/tv/tv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/Luckfox-Lyra/tv/tv.c -------------------------------------------------------------------------------- /MircoPython/Hamurabi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/MircoPython/Hamurabi.py -------------------------------------------------------------------------------- /MircoPython/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/MircoPython/README.md -------------------------------------------------------------------------------- /MircoPython/boot files/boot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/MircoPython/boot files/boot.py -------------------------------------------------------------------------------- /MircoPython/boot files/lib/colorer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/MircoPython/boot files/lib/colorer.py -------------------------------------------------------------------------------- /MircoPython/boot files/lib/default_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/MircoPython/boot files/lib/default_style.py -------------------------------------------------------------------------------- /MircoPython/boot files/lib/highlighter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/MircoPython/boot files/lib/highlighter.py -------------------------------------------------------------------------------- /MircoPython/boot files/lib/picocalc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/MircoPython/boot files/lib/picocalc.py -------------------------------------------------------------------------------- /MircoPython/boot files/lib/picocalc_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/MircoPython/boot files/lib/picocalc_system.py -------------------------------------------------------------------------------- /MircoPython/boot files/lib/pye.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/MircoPython/boot files/lib/pye.py -------------------------------------------------------------------------------- /MircoPython/boot files/lib/sdcard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/MircoPython/boot files/lib/sdcard.py -------------------------------------------------------------------------------- /MircoPython/boot files/lib/vt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/MircoPython/boot files/lib/vt.py -------------------------------------------------------------------------------- /MircoPython/boot files/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/MircoPython/boot files/main.py -------------------------------------------------------------------------------- /MircoPython/chatgpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/MircoPython/chatgpt.py -------------------------------------------------------------------------------- /MircoPython/netchk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/MircoPython/netchk.py -------------------------------------------------------------------------------- /MircoPython/secrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/MircoPython/secrets.py -------------------------------------------------------------------------------- /PicoMite/DS3231/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/DS3231/README.md -------------------------------------------------------------------------------- /PicoMite/DS3231/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/DS3231/screenshot.png -------------------------------------------------------------------------------- /PicoMite/DS3231/setrtc.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/DS3231/setrtc.bas -------------------------------------------------------------------------------- /PicoMite/DS3231/settime.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/DS3231/settime.bas -------------------------------------------------------------------------------- /PicoMite/PicoCalc-dht22-2.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/PicoCalc-dht22-2.bas -------------------------------------------------------------------------------- /PicoMite/PicoCalc-dht22.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/PicoCalc-dht22.bas -------------------------------------------------------------------------------- /PicoMite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/README.md -------------------------------------------------------------------------------- /PicoMite/cig.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/cig.bas -------------------------------------------------------------------------------- /PicoMite/eliza.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/eliza.bas -------------------------------------------------------------------------------- /PicoMite/hamurabi.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/hamurabi.bas -------------------------------------------------------------------------------- /PicoMite/hartnell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/hartnell/README.md -------------------------------------------------------------------------------- /PicoMite/hartnell/asimovian.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/hartnell/asimovian.bas -------------------------------------------------------------------------------- /PicoMite/hartnell/chateau.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/hartnell/chateau.bas -------------------------------------------------------------------------------- /PicoMite/hartnell/citadel.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/hartnell/citadel.bas -------------------------------------------------------------------------------- /PicoMite/hartnell/werewolves.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/hartnell/werewolves.bas -------------------------------------------------------------------------------- /PicoMite/hartnell/werewolves2.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/hartnell/werewolves2.bas -------------------------------------------------------------------------------- /PicoMite/lunar.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/lunar.bas -------------------------------------------------------------------------------- /PicoMite/onboot.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/onboot.bas -------------------------------------------------------------------------------- /PicoMite/pico-ed.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/pico-ed.bas -------------------------------------------------------------------------------- /PicoMite/pico-edit.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/pico-edit.bas -------------------------------------------------------------------------------- /PicoMite/picogotchi.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/picogotchi.bas -------------------------------------------------------------------------------- /PicoMite/pipboy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/pipboy/README.md -------------------------------------------------------------------------------- /PicoMite/pipboy/assets/aim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/pipboy/assets/aim.png -------------------------------------------------------------------------------- /PicoMite/pipboy/assets/gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/pipboy/assets/gear.png -------------------------------------------------------------------------------- /PicoMite/pipboy/assets/gun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/pipboy/assets/gun.png -------------------------------------------------------------------------------- /PicoMite/pipboy/assets/helm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/pipboy/assets/helm.png -------------------------------------------------------------------------------- /PicoMite/pipboy/assets/nuc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/pipboy/assets/nuc.png -------------------------------------------------------------------------------- /PicoMite/pipboy/assets/radio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/pipboy/assets/radio.png -------------------------------------------------------------------------------- /PicoMite/pipboy/assets/shld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/pipboy/assets/shld.png -------------------------------------------------------------------------------- /PicoMite/pipboy/assets/vb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/pipboy/assets/vb.png -------------------------------------------------------------------------------- /PicoMite/pipboy/assets/volt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/pipboy/assets/volt.png -------------------------------------------------------------------------------- /PicoMite/pipboy/assets/world-map.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/pipboy/assets/world-map.jpg -------------------------------------------------------------------------------- /PicoMite/pipboy/edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/pipboy/edit.txt -------------------------------------------------------------------------------- /PicoMite/pipboy/music/Appalachia Radio.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/pipboy/music/Appalachia Radio.mp3 -------------------------------------------------------------------------------- /PicoMite/pipboy/music/Diamond City Station.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/pipboy/music/Diamond City Station.mp3 -------------------------------------------------------------------------------- /PicoMite/pipboy/music/Galaxy News Radio.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/pipboy/music/Galaxy News Radio.mp3 -------------------------------------------------------------------------------- /PicoMite/pipboy/music/Wastelanders Radio.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/pipboy/music/Wastelanders Radio.mp3 -------------------------------------------------------------------------------- /PicoMite/pipboy/music/World-on-fire.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/pipboy/music/World-on-fire.mp3 -------------------------------------------------------------------------------- /PicoMite/pipboy/pipboy.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/pipboy/pipboy.bas -------------------------------------------------------------------------------- /PicoMite/pipboy/pipedit.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/pipboy/pipedit.bas -------------------------------------------------------------------------------- /PicoMite/pipboy/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/pipboy/screenshot.jpg -------------------------------------------------------------------------------- /PicoMite/rnddungeon.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/rnddungeon.bas -------------------------------------------------------------------------------- /PicoMite/tomato/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/tomato/Readme.md -------------------------------------------------------------------------------- /PicoMite/tomato/assets/ANGRY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/tomato/assets/ANGRY.png -------------------------------------------------------------------------------- /PicoMite/tomato/assets/AWAKE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/tomato/assets/AWAKE.png -------------------------------------------------------------------------------- /PicoMite/tomato/assets/BORED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/tomato/assets/BORED.png -------------------------------------------------------------------------------- /PicoMite/tomato/assets/BROKEN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/tomato/assets/BROKEN.png -------------------------------------------------------------------------------- /PicoMite/tomato/assets/COOL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/tomato/assets/COOL.png -------------------------------------------------------------------------------- /PicoMite/tomato/assets/DEBUG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/tomato/assets/DEBUG.png -------------------------------------------------------------------------------- /PicoMite/tomato/assets/DEMOTIVATED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/tomato/assets/DEMOTIVATED.png -------------------------------------------------------------------------------- /PicoMite/tomato/assets/EXCITED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/tomato/assets/EXCITED.png -------------------------------------------------------------------------------- /PicoMite/tomato/assets/FRIEND.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/tomato/assets/FRIEND.png -------------------------------------------------------------------------------- /PicoMite/tomato/assets/GRATEFUL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/tomato/assets/GRATEFUL.png -------------------------------------------------------------------------------- /PicoMite/tomato/assets/HAPPY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/tomato/assets/HAPPY.png -------------------------------------------------------------------------------- /PicoMite/tomato/assets/INTENSE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/tomato/assets/INTENSE.png -------------------------------------------------------------------------------- /PicoMite/tomato/assets/LONELY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/tomato/assets/LONELY.png -------------------------------------------------------------------------------- /PicoMite/tomato/assets/LOOK_L.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/tomato/assets/LOOK_L.png -------------------------------------------------------------------------------- /PicoMite/tomato/assets/LOOK_L_HAPPY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/tomato/assets/LOOK_L_HAPPY.png -------------------------------------------------------------------------------- /PicoMite/tomato/assets/LOOK_R.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/tomato/assets/LOOK_R.png -------------------------------------------------------------------------------- /PicoMite/tomato/assets/LOOK_R_HAPPY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/tomato/assets/LOOK_R_HAPPY.png -------------------------------------------------------------------------------- /PicoMite/tomato/assets/MOTIVATED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/tomato/assets/MOTIVATED.png -------------------------------------------------------------------------------- /PicoMite/tomato/assets/SAD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/tomato/assets/SAD.png -------------------------------------------------------------------------------- /PicoMite/tomato/assets/SLEEP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/tomato/assets/SLEEP.png -------------------------------------------------------------------------------- /PicoMite/tomato/assets/SLEEP2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/tomato/assets/SLEEP2.png -------------------------------------------------------------------------------- /PicoMite/tomato/assets/SMART.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/tomato/assets/SMART.png -------------------------------------------------------------------------------- /PicoMite/tomato/assets/UPLOAD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/tomato/assets/UPLOAD.png -------------------------------------------------------------------------------- /PicoMite/tomato/assets/UPLOAD1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/tomato/assets/UPLOAD1.png -------------------------------------------------------------------------------- /PicoMite/tomato/assets/UPLOAD2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/tomato/assets/UPLOAD2.png -------------------------------------------------------------------------------- /PicoMite/tomato/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/tomato/screenshot1.png -------------------------------------------------------------------------------- /PicoMite/tomato/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/tomato/screenshot2.png -------------------------------------------------------------------------------- /PicoMite/tomato/tomato.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/PicoMite/tomato/tomato.bas -------------------------------------------------------------------------------- /Pictures/Pico-Pinout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/Pictures/Pico-Pinout.svg -------------------------------------------------------------------------------- /Pictures/PicoCalc-Pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/Pictures/PicoCalc-Pinout.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cjstoddard/PicoCalc-uf2/HEAD/README.md --------------------------------------------------------------------------------