Author Archives: admin123

Tor Browser for Raspberry Pi

Tor Browser: I don’t plan on doing a ton of web-browsing on this system, but it’s useful for accessing information, including this WordPress site.  I heard about Tor in the past, and don’t plan on doing anything top secret, but … Continue reading

Posted in Raspberry Pi | Leave a comment

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