From d60abf33599bd834f223fbaba1a7b746f7c995eb Mon Sep 17 00:00:00 2001 From: KemoNine Date: Sat, 1 Aug 2020 00:33:33 +0000 Subject: [PATCH] Move wifi/hdmi info from notes to docs --- docs/README.md | 9 ++++++++- docs/hdmi.md | 16 ++++++++++++++++ docs/wifi.md | 13 +++++++++++++ 3 files changed, 37 insertions(+), 1 deletion(-) create mode 100644 docs/hdmi.md create mode 100644 docs/wifi.md diff --git a/docs/README.md b/docs/README.md index dbf856a..f96956a 100644 --- a/docs/README.md +++ b/docs/README.md @@ -1,6 +1,13 @@ # General Documentation -This folder contains a bunch of general information on how to get the base of a PiFrame deployed. +This folder contains a bunch of general information on how to get the base of a PiFrame deployed as well as additional notes. + +## General Notes + +* [WiFi](wifi.md) +* [HDMI](hdmi.md) + +## Setup / Deployment Items marked ```REQUIRED``` are assumed to be setup and working. You've been warned. diff --git a/docs/hdmi.md b/docs/hdmi.md new file mode 100644 index 0000000..d5d6286 --- /dev/null +++ b/docs/hdmi.md @@ -0,0 +1,16 @@ +# HDMI + +Below are some handy commands and notes regarding HDMI on the Raspberry Pi 4. + +``` sh + +# Get HDMI device info +vcgencmd get_lcd_info + +# Turn off HDMI +vcgencmd display_power 0 + +# Turn on HDMI +vcgencmd display_power 1 + +``` diff --git a/docs/wifi.md b/docs/wifi.md new file mode 100644 index 0000000..7d03cf7 --- /dev/null +++ b/docs/wifi.md @@ -0,0 +1,13 @@ +# WiFi + +Below are some handy commands and notes regarding WiFi on the Raspberry Pi 4. + +``` sh + +# Wifi config using NetworkManager +nmtui + +# Vanilla WiFi config (you probably don't want this if you're following our docs) +wifi-menu + +```