# Set up Raspberry PI

### Steps:

1. Install Raspberry PI image (Raspbian) via Balena Etcher:
2. Set up SSH Access by creating an empty file called SSH:

```bash
touch /boot/ssh
```

1. Set up Wifi Connection by creating a file called **wpa\_supplicant.conf** in `/boot`

```bash
touch /boot/wpa_supplicant.conf
```

* Use the following config:

```bash
country=US # Your 2-digit country code
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
network={
    ssid="YOUR_NETWORK_NAME"
    psk="YOUR_PASSWORD"
    key_mgmt=WPA-PSK
}
```

With this file in place, Raspberry Pi OS will automatically move it in `/etc/wpa_supplicant/` when the Raspberry Pi is booted.

{% hint style="info" %}
Log in via SSH &#x20;

Default user: `pi`

Default password: `raspberry`
{% endhint %}
