Skip to content
Snippets Groups Projects
Commit 699f65dd authored by Jess Ward's avatar Jess Ward
Browse files

Additional instructions added

parent 2504c754
No related branches found
No related tags found
No related merge requests found
......@@ -6,9 +6,17 @@ when it senses lights are off in the room.
It's written in Python 3 and requires a photoresistor-capacitor circuit
connected to a Raspberry Pi running Snapcast.
# Setup
# Setup/Usage
* `sudo pip install DarkMute`
* `darkmute.py`
To run this as a service, create a systemd service definition. Instructions pending.
# Developer Setup
* Clone this from [gitlab](https://git.xhost.io/jess/Dark-Mute)
* Create and activate Python 3 virtual env
* `pip install -e .` to install dependencies
* Build the circuit, connected to GPIO Pin 7
* add user to gpio group [/dev/gpiomem] (https://raspberrypi.stackexchange.com/a/40106)
* add user to gpio group [/dev/gpiomem](https://raspberrypi.stackexchange.com/a/40106)
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="DarkMute",
version="0.1",
author="Jessica Ward",
description="Mute snapcast client playing on raspi3",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://git.xhost.io/jess/Dark-Mute",
packages=find_packages(),
scripts=['darkmute.py'],
install_requires=[
"RPi.GPIO==0.6.3",
"snapcast==2.0.8"
],
classifiers=[
"License :: OSI Approved :: MIT License",
"Intended Audience :: System Administrators",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Topic :: System :: Hardware"
]
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment