A simple introduction to using Raspberry Pi computers at Loveland CreatorSpace.
Raspberry Pi boards are tiny, affordable computers that can run Linux, connect to the internet, control electronics, and power full applications. They’re perfect for learning programming, building smart devices, and experimenting with hardware.
This guide gives beginners a clear starting point using the Raspberry Pis available in the Electronics Lab.
A Raspberry Pi is a single‑board computer capable of:
Running a full operating system (usually Raspberry Pi OS)
Connecting to monitors, keyboards, and networks
Running Python, C/C++, and other languages
Controlling electronics through GPIO pins
Hosting web servers, automation scripts, and IoT projects
Acting as a mini desktop computer
If Arduino is a microcontroller, Raspberry Pi is a tiny PC.
Loveland CreatorSpace provides:
Raspberry Pi boards (various models)
MicroSD cards
Power supplies
HDMI cables
Keyboards and mice (as needed)
Laptop computers (for flashing SD cards or remote access)
Breadboards and jumper wires
Sensors and components
GPIO accessories
Everything you need for beginner projects is available in the lab.
Raspberry Pis are low‑voltage and safe, but:
Use the correct power supply (5V, 2.5–3A depending on model).
Never short 5V to ground on the GPIO header.
Double‑check wiring before powering the Pi.
Avoid touching GPIO pins with metal tools while powered.
Keep liquids away from the board.
Use the lab laptops to install Raspberry Pi OS:
Open the Raspberry Pi Imager.
Choose Raspberry Pi OS (32‑bit).
Select your SD card.
Click Write.
This installs the operating system.
Insert the SD card into the Pi.
Connect HDMI to a monitor.
Plug in keyboard and mouse.
Connect power last — the Pi will boot immediately.
You’ll see:
Setup wizard
Wi‑Fi configuration
Software update prompt
Desktop environment
Once you reach the desktop, you’re ready to explore.
You’ll see a familiar interface with:
Menu button
File manager
Terminal
Programming tools
Web browser
Open Terminal to run commands:
Code
ls
cd
python3
sudo apt update
The terminal is powerful — but beginners can stick to the desktop at first.
Python is the main programming language for Raspberry Pi.
Open Thonny (preinstalled) to write your first program:
python
print("Hello, CreatorSpace!")
Run it — you’re officially a Pi programmer.
GPIO pins let the Pi control electronics like LEDs, sensors, and switches.
Use 3.3V logic only (never 5V on GPIO pins).
Always connect ground.
Use resistors with LEDs.
Double‑check wiring before powering the Pi.
Wiring
LED → resistor → GPIO pin (e.g., GPIO 17)
LED → GND
Python Code
python
import RPi.GPIO as GPIO
import time
GPIO.setmode(GPIO.BCM)
GPIO.setup(17, GPIO.OUT)
while True:
GPIO.output(17, True)
time.sleep(0.5)
GPIO.output(17, False)
time.sleep(0.5)
Run it — your LED will blink.
Bad SD card
Wrong OS image
Power supply too weak
Loose HDMI cable
Wrong password
Wi‑Fi disabled in settings
Model without Wi‑Fi (rare)
Wrong pin numbering (BCM vs BOARD)
Missing ground
Using 5V accidentally
No resistor on LED
LED blinkers
Temperature logger
Motion‑activated camera
Simple web server
Retro gaming emulator
Smart home sensor
Network monitor
Pi‑controlled lights or relays
Raspberry Pi is incredibly versatile — you can build almost anything.
Shut down the Pi from the menu (don’t just unplug it).
Disconnect cables.
Return SD cards, keyboards, and accessories.
Put components back in labeled bins.
Leave the bench clean for the next member.
Ask in #electronics or talk to the Electronics Area Lead.
Raspberry Pi is beginner‑friendly — members are always happy to help you learn.