Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release latest changes to production #3989

Merged
merged 4 commits into from
Dec 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ The Raspberry Pi Documentation website is built from Asciidoc source using:
* [jekyll-asciidoc](https://github.com/asciidoctor/jekyll-asciidoc)
* Python

The website automatically deploys to [raspberrypi.com/documentation](raspberrypi.com/documentation) using GitHub Actions when new commits appear in the `master` branch.
The website automatically deploys to [www.raspberrypi.com/documentation](https://www.raspberrypi.com/documentation) using GitHub Actions when new commits appear in the `master` branch.

## Contribute

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,13 @@ Finally, add your wireless hotspot connection to the bridge. You can either add
$ sudo nmcli connection modify 'Hotspot' master bridge0
----

* If you have not yet created a wireless hotspot connection, create a new interface and add it to the bridge with a single command, replacing the `<hotspot-password>` placeholder with a password of your choice:
* If you have not yet created a wireless hotspot connection, create a new interface and add it to the bridge with a single command, replacing the `<hotspot-ssid>` and `<hotspot-password>` placeholders with a network name and password of your choice, respectively:
+
[source,console?prompt=$]
----
$ sudo nmcli connection add con-name 'Hotspot' \
ifname wlan0 type wifi slave-type bridge master bridge0 \
wifi.mode ap wifi.ssid Hotspot wifi-sec.key-mgmt wpa-psk \
wifi.mode ap wifi.ssid <hotspot-ssid> wifi-sec.key-mgmt wpa-psk \
wifi-sec.proto rsn wifi-sec.pairwise ccmp \
wifi-sec.psk <hotspot-password>
----
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ You can find a 40-pin GPIO (general-purpose input/output) header on all current

NOTE: The header is unpopulated (has no headers) on Zero and Pico devices that lack the "H" suffix.

image::images/GPIO-Pinout-Diagram-2.png[alt="GPIO pinout diagram",width="60%"]
image::images/GPIO-Pinout-Diagram-2.png[alt="GPIO pinout diagram",width="100%"]

General Purpose I/O (GPIO) pins can be configured as either general-purpose input, general-purpose output, or as one of up to six special alternate settings, the functions of which are pin-dependent.

image::images/GPIO.png[alt="GPIO layout",width="60%"]
image::images/GPIO.png[alt="GPIO layout",width="100%"]

NOTE: The GPIO pin numbering scheme is not in numerical order. GPIO pins 0 and 1 are present on the board (physical pins 27 and 28), but are reserved for advanced use.

Expand Down
Loading