Skip to content

Instantly share code, notes, and snippets.

View mrpjevans's full-sized avatar

PJ Evans mrpjevans

View GitHub Profile
@mrpjevans
mrpjevans / test_motors.py
Created June 27, 2022 14:59
test_motors.py
# CamJam EduKit 3 - Robotics
# Motor Test Code
import time # Import the Time library
from gpiozero import CamJamKitRobot # Import the CamJam GPIO Zero Library
robot = CamJamKitRobot()
# Turn the motors on
robot.forward()
[Unit]
Description=Minecraft Server
After=network.target
[Service]
User=minecraft
Nice=1
KillMode=none
SuccessExitStatus=0 1
ProtectHome=true
[http]
hostname = 0.0.0.0
[audio]
output = alsasink
[local]
media_dir = /home/pi/Music
wget -q -O - https://apt.mopidy.com/mopidy.gpg | sudo apt-key add -
sudo wget -q -O /etc/apt/sources.list.d/mopidy.list https://apt.mopidy.com/bullseye.list
sudo apt update
sudo apt install mopidy python3-pip
sudo adduser mopidy video
sudo pip3 install Mopidy-Iris
sudo pip3 install Mopidy-Local
sudo sh -c 'echo "mopidy ALL=NOPASSWD: /usr/local/lib/python3.9/dist-packages/mopidy_iris/system.sh" >> /etc/sudoers’
mkdir -p ~/Music
sudo systemctl enable mopidy
@mrpjevans
mrpjevans / smb.cnf
Last active October 22, 2021 14:30
Add Time Machine support to a Samba share
# To support macOS Time Machine backups in Samba
# Create a share that has the following properties
# in /etc/samba/smb.conf
# In this example we have a mounted drive called 'huge'
# with a directory called 'Time Machine'
[Time Machine]
comment = Time Machine
path = /mnt/huge/Time Machine
read only = no
@mrpjevans
mrpjevans / gist:c20e728c0dfd4cddc35a6e19e32d8381
Last active November 30, 2021 16:39
Install Home Assistant Core
Please run the following commands line-by-line, not as a script:
sudo apt -y update && sudo apt -y upgrade
sudo apt install -y python3 python3-dev python3-venv python3-pip libffi-dev libssl-dev libjpeg-dev zlib1g-dev autoconf build-essential libopenjp2-7 libtiff5 libturbojpeg0 tzdata
sudo useradd -rm homeassistant -G dialout,gpio,i2c
sudo mkdir /srv/homeassistant
sudo chown homeassistant:homeassistant /srv/homeassistant
sudo -u homeassistant -H -s
cd /srv/homeassistant
python3 -m venv .
@mrpjevans
mrpjevans / install_mopidy.sh
Last active August 16, 2021 11:17
Install Mopidy and Iris
#!/bin/sh
# Add Mopidy repo and install
wget -q -O - https://apt.mopidy.com/mopidy.gpg | sudo apt-key add -
sudo wget -q -O /etc/apt/sources.list.d/mopidy.list https://apt.mopidy.com/buster.list
sudo apt update
sudo apt install mopidy
sudo adduser mopidy video
# Configure (be careful with this line!)
@mrpjevans
mrpjevans / install_plex.sh
Last active August 15, 2021 10:54
Install Plex on Raspberry Pi
#!/bin/sh
# Plex's repository uses HTTPS as the transport, so we need to install support
sudo apt update
sudo apt install apt-transport-https ca-certificates curl
# Get Plex's public key and add the Plex repo
curl https://downloads.plex.tv/plex-keys/PlexSign.key | sudo apt-key add -
echo deb https://downloads.plex.tv/repo/deb public main | sudo tee /etc/apt/sources.list.d/plexmediaserver.list
[Huge]
comment = Huge
path = /mnt/huge
read only = no
browsable = yes
[Shared]
comment = Shared
path = /var/shared
read only = no
browsable = yes