This is some superscript text.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| * add line to config.txt: "enable_uart=1" to enable serial console (https://learn.adafruit.com/adafruits-raspberry-pi-lesson-5-using-a-console-cable/enabling-serial-console) | |
| * Create file in / called "ssh" | |
| * Create file wpa_supplicant.conf: | |
| ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev | |
| update_config=1 | |
| country=GB | |
| network={ | |
| ssid="SSID" |
To build a project where the Raspberry Pi Zero W 2, running Ubuntu, automatically configures a host system upon USB connection using Ansible, we'll break down the project into several detailed and technical components.
- Image: Ubuntu for Raspberry Pi (likely Ubuntu Server for lightweight, headless operation).
- Version: Choose the latest stable version compatible with Raspberry Pi Zero W 2. As of my last update, it's Ubuntu 22.04 LTS.
- Source: Download the image from the official Ubuntu website for Raspberry Pi.
- Flashing Tool: Use Raspberry Pi Imager or
ddcommand in Linux to flash the SD card.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # See /boot/overlays/README for all available options | |
| ############################################################################## | |
| ## Raspberry Pi Configuration Settings | |
| ## | |
| ## Revision 18, 2018/03/05 | |
| ## | |
| ## Details taken from the eLinux wiki | |
| ## For up-to-date information please refer to wiki page. | |
| ## | |
| ## Wiki Location : http://elinux.org/RPiconfig |
- Use Shell on Proxmox Node to install NUT Client
apt-get install nut-client
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| version: '3' | |
| services: | |
| hassio: | |
| image: homeassistant/amd64-hassio-supervisor | |
| container_name: hassio_supervisor | |
| privileged: true | |
| security_opt: | |
| - seccomp:unconfined | |
| - apparmor:unconfined |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Created 2015, Zack Gainsforth | |
| import matplotlib | |
| import matplotlib.pyplot as plt | |
| import numpy as np | |
| import struct | |
| from numpy.fft import fft, fftfreq | |
| def LoadSPAInterferogram(FileName): | |
| # Open the SPA file. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
NewerOlder

