diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 4788ba71d..110258458 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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 diff --git a/documentation/asciidoc/computers/configuration/host-wireless-network.adoc b/documentation/asciidoc/computers/configuration/host-wireless-network.adoc index 285edd2a1..9bd7dcc1e 100644 --- a/documentation/asciidoc/computers/configuration/host-wireless-network.adoc +++ b/documentation/asciidoc/computers/configuration/host-wireless-network.adoc @@ -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 `` 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 `` and `` 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 wifi-sec.key-mgmt wpa-psk \ wifi-sec.proto rsn wifi-sec.pairwise ccmp \ wifi-sec.psk ---- diff --git a/documentation/asciidoc/computers/raspberry-pi/gpio-on-raspberry-pi.adoc b/documentation/asciidoc/computers/raspberry-pi/gpio-on-raspberry-pi.adoc index 4c094d8da..e74ec7baa 100644 --- a/documentation/asciidoc/computers/raspberry-pi/gpio-on-raspberry-pi.adoc +++ b/documentation/asciidoc/computers/raspberry-pi/gpio-on-raspberry-pi.adoc @@ -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.