SD-Karte mit NOOBS
vorinstalliert. NOOBS ist ein Betriebssystem-Installationsprogramm, das standardmäßig Raspbian enthält.
und vereinfacht die Einrichtung des Betriebssystems.
Sie könnten auch eine USB-Tastatur, eine USB-Maus und einen Monitor mit
HDMI-Kabel. Sie vereinfachen die anfängliche Hardwareeinrichtung (und sind erforderlich,
NOOBS installieren).
Als Nächstes richten Sie die Hardware ein und konfigurieren den Netzwerkzugriff.
Hardware verbinden und Netzwerkzugriff konfigurieren
Schließen Sie das Mikrofon und den Lautsprecher an den Raspberry Pi an.
Legen Sie die SD-Karte in den Raspberry Pi ein (mit NOOBS oder Raspbian mit
Desktop bereits geladen).
Schließen Sie eine USB-Tastatur, eine USB-Maus und einen HDMI-Monitor an Ihren Raspberry Pi an. Wenn
Wenn Sie diese nicht haben, können Sie jederzeit
Remote-Verbindung zum Pi herstellen.
Nachdem Sie den Zugriff konfiguriert haben, können Sie sich über SSH mit dem Raspberry Pi verbinden.
(optional)
Datum und Uhrzeit konfigurieren
Überprüfen Sie, ob Datum und Uhrzeit auf dem Gerät richtig eingestellt sind.
date
Über SSH mit Raspberry Pi verbinden (optional)
Wenn Sie Befehle auf dem Raspberry Pi ausführen möchten, müssen Sie das Terminal öffnen.
auf dem Gerät oder
verwenden Sie eine SSH-Verbindung. Sie müssen eine SSH-Verbindung zu Ihrem
Entwicklungsmaschine, wenn kein Monitor, Tastatur und Maus angeschlossen sind
zum Raspberry Pi.
Prüfen Sie, ob SSH aktiviert ist.
auf dem Raspberry Pi.
ssh pi@raspberry-pi-ip-address
password: password-for-raspberry-pi
Beispiel:
$ ssh pi@192.168.1.101
password: raspberry
Auf Raspbian lautet das Standardpasswort für den pi-Nutzer raspberry. Sie sollten
ändere dieses Passwort sofort. Führe dazu passwd in einem Terminal auf dem Pi aus.
Verwenden Sie das Terminal oder die SSH-Sitzung, die Sie in diesem Schritt eingerichtet haben, um den
im weiteren Verlauf dieses Leitfadens. Das Arbeitsverzeichnis für beide ist
/home/pi
[null,null,["Zuletzt aktualisiert: 2025-07-25 (UTC)."],[[["\u003cp\u003eThis guide details setting up a Raspberry Pi (3/Zero/Zero W) with audio input/output for a project.\u003c/p\u003e\n"],["\u003cp\u003eYou will need a Raspberry Pi, microphone, speaker, SD card (with NOOBS or Raspbian), and optionally a monitor, keyboard, and mouse for initial setup.\u003c/p\u003e\n"],["\u003cp\u003eThe guide involves configuring hardware, network access, date/time, and potentially connecting via SSH for remote access.\u003c/p\u003e\n"],["\u003cp\u003eEnsure your Raspberry Pi's SSH is enabled for remote command execution if not using a directly connected monitor, keyboard, and mouse.\u003c/p\u003e\n"],["\u003cp\u003eFollowing setup, the next step involves configuring and testing the audio functionality.\u003c/p\u003e\n"]]],["Users need a Raspberry Pi (3 or Zero), power supply, USB microphone, and speaker. An SD card with NOOBS or Raspbian is essential. Connect the hardware: microphone, speaker, and SD card to the Raspberry Pi. Additionally, plug in a USB keyboard, mouse, and HDMI monitor (optional). Connect to the network, and check/correct the date and time. Optionally, enable and connect via SSH using the default credentials (change the password). All subsequent terminal commands should be entered in the /home/pi directory.\n"],null,["# Set Up Hardware and Network Access\n\nThe content on this page is hardware-dependent. Please select from the following: \nRaspberry Pi 3 Other platforms\nBefore you begin, you'll need the following components:\n\n\u003cbr /\u003e\n\n- Raspberry Pi 3 Model B and power supply (see [recommended kit](https://www.adafruit.com/products/3334))\n\n\n | **Note:** You can also use a Raspberry Pi Zero (or Zero W).\n\n \u003cbr /\u003e\n\n- USB microphone (see [recommended](https://www.adafruit.com/product/3367))\n\n- Speaker, preferably USB (see recommended [USB](https://www.adafruit.com/products/3369)\n or [3.5mm-jack](https://www.sparkfun.com/products/14023))\n\n- An SD card with [NOOBS](https://www.raspberrypi.org/downloads/noobs/)\n pre-installed. NOOBS is an OS installer that contains Raspbian by default\n and simplifies OS setup.\n\n | **Note:** You can also [download Raspbian](https://www.raspberrypi.org/downloads/raspbian/) and [write](https://www.raspberrypi.org/documentation/installation/installing-images/linux.md) it to the SD card yourself.\n- You may also want to have a USB keyboard, USB mouse, and a monitor with an\n HDMI cable. These simplify initial hardware setup (and are required to\n install NOOBS).\n\nYou'll now set up the hardware and configure network access.\n\nConnect the hardware and configure network access\n-------------------------------------------------\n\n1. Connect the microphone and speaker to the Raspberry Pi.\n2. Insert the SD card into the Raspberry Pi (with NOOBS or Raspbian with Desktop already loaded).\n3. Connect a USB keyboard, USB mouse and HDMI monitor to your Raspberry Pi. If you don't have these, you can always [connect to the Pi remotely](/assistant/sdk/guides/service/python/embed/setup-headless).\n4. Plug in an ethernet cable or [connect to a Wi-Fi\n network](https://www.raspberrypi.org/documentation/configuration/wireless/desktop.md).\n\nAfter you configure access, you can connect to the Raspberry Pi via [SSH](#ssh)\n(optional).\n\nConfigure the date and time\n---------------------------\n\nCheck that the date and time are set correctly on the device. \n\n```\ndate\n```\n| **Note:** An incorrect date or time may cause SSL errors. Restart the device to automatically set the correct date and time from a time server or use the `date --s=\u003cSTRING\u003e` command to set them manually.\n\nConnect to the Raspberry Pi via SSH (Optional)\n----------------------------------------------\n\nTo run commands on the Raspberry Pi, you need to open the [terminal](https://www.raspberrypi.org/documentation/usage/terminal/)\non the device or use an SSH connection. You must use an SSH connection from your\ndevelopment machine if you do not have a monitor, keyboard, and mouse connected\nto the Raspberry Pi.\n\nMake sure [SSH is enabled](https://www.raspberrypi.org/documentation/remote-access/ssh/README.md)\non the Raspberry Pi. \n\n```\nssh pi@raspberry-pi-ip-address\n``` \n\n```\npassword: password-for-raspberry-pi\n```\n\nFor example: \n\n```\n$ ssh pi@192.168.1.101\npassword: raspberry\n```\n\nOn Raspbian, the default password for the `pi` user is `raspberry`. You should\nchange this password immediately (run `passwd` in a terminal on the Pi).\n\nUse the terminal or the SSH session you set up in this step to enter the\ncommands in the rest of this guide. The working directory for both is\n`/home/pi`.\n\nNext step\n---------\n\n[Configure and Test the Audio](/assistant/sdk/guides/service/python/embed/audio)"]]