Category Archives: Uncategorized

Nebula Raiders – Day2

Needing to load some libraries Went to: https://craftingtable.com/pages/downloads Needed lcd_api.py and i2c_lcd.py Within Thonny: -File, open and navigate to each file -Open on computer -Save As and save to Raspberry Pi Pico and name it the same. It then shows … Continue reading

Posted in Uncategorized | Leave a comment

Nebula Raiders – Day1

from machine import Pin import utime   led_green = Pin(15, Pin.OUT) led_red = Pin(14, Pin.OUT) led_blue = Pin(13, Pin.OUT)   while True:     led_green.on()     utime.sleep(1)     led_green.off()     led_red.on()     utime.sleep(1)     led_red.off() … Continue reading

Posted in Uncategorized | Leave a comment

Nebula Raiders (MicroPython)

I put the Arduino project on hold for a bit, while I broke out another project from Crafting Table (formerly inventr.io) that integrates the Raspberry Pi Pico WH. I’m heading towards another project (in future) with building a Raspberry Pi … Continue reading

Posted in Uncategorized | Leave a comment