With your suggestions i came up with squeezelight , im goingto give it a try with that one, it seems to have most of my requirements, . Ill come back to that later. Hoping to give a bit more info on my try in a couple of days. The goal is a speaker with HifiBerry controlable with iOS app for iNet ra...
Is it possible to Install extra like smb server On a distro like the ones i mentioned?
I know it is all based On the same but On all the fora of those distros they say you cant Install it On Raspbian thats why i was looking for alternatives
Is there Some alternative like Volumio or runeaudio or moode to Install On Raspbian? I like those systems , i want iOS appcontrol of music, AirPlay and internet radio but the systems that have that have there OWN os , i want to Install mine On existing Raspbian .
Thx
pi@Rasp01:~ $ python3 relay1.py
Traceback (most recent call last):
File "relay1.py", line 2, in <module>
import RPI.GPIO as GPIO
ImportError: No module named 'RPI'
Bensimmo thx for clearing that out , didnt know the tabbing was a problem, pretty clear now whats with the library import sometimes its #!/bin/python or #!/usr/bin/python is this where library is installed ( prolly) but why the difference , is there a reason for it? #!/bin/python import RPI.GPIO as ...
Hi all , im new to python and allready an error setup is RPI3 with on pin 4 i have a relay connected (sainsmart board) #!/bin/python import RPI.GPIO as GPIO import time GPIO.setmode(GPIO.BCM) GPIO.setwarnings(False) GPIO.setup(4, GPIO.out) try: while True: GPIO.output(4, GPIO.1) sleep(.2) GPIO.outpu...
Most of the relay boards are 5 v but GPIO pins are 3,3 . Some topics i read are about guys hooking it up directly on the pins and some places i read about putting some extra things in between. How is that all about? Is it safe to directly connect a sainsmart 4 chan relay board to the raspberry pi or...
hi all I have 2 raspberry pi at 2 different locations, the modems have dynamic ip addresses that change every 48 hours. At my home i have a dyndns account that i use for my nas , i can run a website from the nas with php script. I was thinking of some kind of script in python and cron (for every hou...