14.12.2016, 10:01
14.12.2016, 15:56
(14.12.2016, 10:01)cbrauweiler schrieb: [ -> ]Doch das geht auch, ist aber nur ein Workaround.
Oder normal zu wollen helfen, aber ich habe nicht gefunden /radio_config.py. Während ich nicht lösen kann, kann es nicht mit dem Leistungsverstärker.
De verknüpft werden vielen Dank für Ihre Bemühungen!
14.05.2017, 20:37
Hi,
ich bin auch gerade dabei meine Radio einzustellen. Es startet wie geplant, aber geht wie bekannt auf Frequenz 102.4.
Ich habe mir euer Skrit dazu erstellt, aber beim Nachvollziehen scheint sich zu erkläre warum es bei mir nicht funktioniert.
Das Skrit bezieht sich auf folgenden Pfad:
Dieser ist aber nicht vorhanden. Muss ich einen extra erstellen, oder hat sich der Ort mittlerweile verändert?
ich bin auch gerade dabei meine Radio einzustellen. Es startet wie geplant, aber geht wie bekannt auf Frequenz 102.4.
Ich habe mir euer Skrit dazu erstellt, aber beim Nachvollziehen scheint sich zu erkläre warum es bei mir nicht funktioniert.
Das Skrit bezieht sich auf folgenden Pfad:
Code:
/home/pi/.kodi/addons/plugin.program.radioFM/resources/stations
Dieser ist aber nicht vorhanden. Muss ich einen extra erstellen, oder hat sich der Ort mittlerweile verändert?
15.05.2017, 08:01
Das funktioniert nur mit dem original Radio Plugin, welches wir nicht mehr nutzen. Wir nutzen das hier von hawkeyexp und da werden die Stationen woanders gespeichert.
15.05.2017, 21:25
(15.05.2017, 08:01)cbrauweiler schrieb: [ -> ]Das funktioniert nur mit dem original Radio Plugin, welches wir nicht mehr nutzen. Wir nutzen das hier von hawkeyexp und da werden die Stationen woanders gespeichertJop, so hatte ich es auch gelesen, aber ist der Speicherort bekannt, dann würde ich versuchen den einzulesen?
15.05.2017, 21:30
(15.05.2017, 21:25)BadFrog schrieb: [ -> ]Die Stationen werden in die Addon-Settings geschrieben und liegen dann im Ordner addon-data / plugin - es sollte aber nicht an der datei Manipuliert werden da sonst Probleme im Addon entstehen können(15.05.2017, 08:01)cbrauweiler schrieb: [ -> ]Das funktioniert nur mit dem original Radio Plugin, welches wir nicht mehr nutzen. Wir nutzen das hier von hawkeyexp und da werden die Stationen woanders gespeichertJop, so hatte ich es auch gelesen, aber ist der Speicherort bekannt, dann würde ich versuchen den einzulesen?
Gesendet von meinem Xperia Z1 mit Tapatalk
03.06.2017, 15:41
Hi,
Super Projekt!
Ich habe Addon versucht auf meinem RPI 3 zum laufen zu bringen. Optisch gefällt es mir sehr. Leider bekomme ich den Radioempfang nicht hin.
Gibt es eigentlich eine Möglichkeit einen Mystique SDR R820T2 TV Usb Stick mit dem RTL2832 mit dem Addon zu nutzen?
Vielen Dank.
Super Projekt!
Ich habe Addon versucht auf meinem RPI 3 zum laufen zu bringen. Optisch gefällt es mir sehr. Leider bekomme ich den Radioempfang nicht hin.
Gibt es eigentlich eine Möglichkeit einen Mystique SDR R820T2 TV Usb Stick mit dem RTL2832 mit dem Addon zu nutzen?
Vielen Dank.
03.06.2017, 15:44
(03.06.2017, 15:41)Phogra schrieb: [ -> ]Hi,Nein - das Addon ist nut für das Si4703-Radio-Modul
Super Projekt!
Ich habe Addon versucht auf meinem RPI 3 zum laufen zu bringen. Optisch gefällt es mir sehr. Leider bekomme ich den Radioempfang nicht hin.
Gibt es eigentlich eine Möglichkeit einen Mystique SDR R820T2 TV Usb Stick mit dem RTL2832 mit dem Addon zu nutzen?
Vielen Dank.
Gesendet von meinem Xperia Z1 mit Tapatalk
04.06.2017, 11:30
(03.06.2017, 15:44)hawkeyexp schrieb: [ -> ](03.06.2017, 15:41)Phogra schrieb: [ -> ]Hi,Nein - das Addon ist nut für das Si4703-Radio-Modul
Super Projekt!
Ich habe Addon versucht auf meinem RPI 3 zum laufen zu bringen. Optisch gefällt es mir sehr. Leider bekomme ich den Radioempfang nicht hin.
Gibt es eigentlich eine Möglichkeit einen Mystique SDR R820T2 TV Usb Stick mit dem RTL2832 mit dem Addon zu nutzen?
Vielen Dank.
Gesendet von meinem Xperia Z1 mit Tapatalk
Danke.
Ist aber verdammt schade.
04.06.2017, 12:04
Hi All,
Sorry for switching to English.
I am trying to get this FM Radio to work with this addon, with running the carpc-controller on the background.
This is not working for me because I get a message from the kodi.log with:
Client CarPC GPIO Controller from 127.0.0.1 timed out
When I look in netstat --listening, then I can see that there is an actual UDP port open at 5005, that is also configured in the FM Radio addon python script.
udp 0 0 localhost:5005 *:*
When I try to communicate with the Si4703 using the tutorial below (to check hardware is OK), then it is working and I can communicate with the FM module.
https://tutorials-raspberrypi.de/raspber...io-car-pc/
When I try to compile the carpc-controller application myself from the GIT: (https://github.com/aistodorescu/carpc-co...server.cpp)
Then I get the error:
src/si4703.cpp
Assembler messages:
Fatal error: can't create obj/si4703.o: No such file or directory
Makefile:21: recipe for target 'obj/si4703.o' failed
So I use the pre-compiled version which seems to run normally.
But now the main question:
Why is kodi not communicating with the carpc-controller using the RadioFM addon over UDP socket?
Sorry for switching to English.
I am trying to get this FM Radio to work with this addon, with running the carpc-controller on the background.
This is not working for me because I get a message from the kodi.log with:
Client CarPC GPIO Controller from 127.0.0.1 timed out
When I look in netstat --listening, then I can see that there is an actual UDP port open at 5005, that is also configured in the FM Radio addon python script.
udp 0 0 localhost:5005 *:*
When I try to communicate with the Si4703 using the tutorial below (to check hardware is OK), then it is working and I can communicate with the FM module.
https://tutorials-raspberrypi.de/raspber...io-car-pc/
When I try to compile the carpc-controller application myself from the GIT: (https://github.com/aistodorescu/carpc-co...server.cpp)
Then I get the error:
src/si4703.cpp
Assembler messages:
Fatal error: can't create obj/si4703.o: No such file or directory
Makefile:21: recipe for target 'obj/si4703.o' failed
So I use the pre-compiled version which seems to run normally.
But now the main question:
Why is kodi not communicating with the carpc-controller using the RadioFM addon over UDP socket?