Folgende Warnungen sind aufgetreten:
Warning [2] Undefined variable $unreadreports - Line: 34 - File: global.php(961) : eval()'d code PHP 8.2.2 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/global.php(961) : eval()'d code 34 errorHandler->error_callback
/global.php 961 eval
/printthread.php 16 require_once
Warning [2] Undefined property: MyLanguage::$archive_pages - Line: 2 - File: printthread.php(287) : eval()'d code PHP 8.2.2 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/printthread.php(287) : eval()'d code 2 errorHandler->error_callback
/printthread.php 287 eval
/printthread.php 117 printthread_multipage



RasPiCar Projekt Forum
RadioFM 2.1.3 (Nextgen) - Druckversion

+- RasPiCar Projekt Forum (https://RasPiCarProjekt.de)
+-- Forum: Software (https://RasPiCarProjekt.de/forumdisplay.php?fid=4)
+--- Forum: Kodi (https://RasPiCarProjekt.de/forumdisplay.php?fid=54)
+---- Forum: Add-Ons (https://RasPiCarProjekt.de/forumdisplay.php?fid=55)
+---- Thema: RadioFM 2.1.3 (Nextgen) (/showthread.php?tid=860)

Seiten: 1 2 3 4 5 6 7 8


RE: RadioFM 2.1.3 (Nextgen) - cbrauweiler - 13.09.2017

u need the carpccontroller with config file. u can extract it from the zip file. its under /opt/carpc


RE: RadioFM 2.1.3 (Nextgen) - Glidlock - 14.09.2017

Is anyone have try to recompile carpc controller in "step-by-step" image, to change basic settings of radio?


RE: RadioFM 2.1.3 (Nextgen) - cbrauweiler - 14.09.2017

yes but it is difficult because of a missing file in the git and i didn`t found it anymore


RE: RadioFM 2.1.3 (Nextgen) - Glidlock - 17.09.2017

(14.09.2017, 11:59)cbrauweiler schrieb: yes but it is difficult because of a missing file in the git and i didn`t found it anymore

Here is the link on github https://github.com/aistodorescu/carpc-controller. I have trying recompile but didn't get result. Maybe, if you can explain me how to do this correctly, i will make a tutorial in *.pdf with images, or make video "How to recompile carpc controller". I think it will be interesting for many people on this forum. I saw the links on engineeringdiy.freeforums.org, trying recompile according description, but nothing work.


RE: RadioFM 2.1.3 (Nextgen) - cbrauweiler - 18.09.2017

in the new version there is no need to recompile the controller because u can manage all settings within a kodi addon. how to recompile is discribed in the engineeringdiy forum. but u need a missing file from the kodi 15.2 libraries.


RE: RadioFM 2.1.3 (Nextgen) - BadFrog - 26.09.2017

(15.05.2017, 21:30)awkeyexp schrieb:
(15.05.2017, 21:25)BadFrog schrieb:
(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 gespeichert
Jop, so hatte ich es auch gelesen, aber ist der Speicherort bekannt, dann würde ich versuchen den einzulesen?
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

Gesendet von meinem Xperia Z1 mit Tapatalk

Hallo, ich habe die Finger vom Addon gelassen, aber im EngineeringDIY (Original von KM5TZ) den für mich entscheidenden Hinweis gefunden und den Inhalt für meine Belange ganz leicht angepasst, den ich euch nicht vorenthalten möchte:

Erstellt radio_config.py
Code:
sudo nano /opt/carpc/startup/radio_config.py

mit folgendem Inhalt. Bei der Sleeptime könnt ihr ein wenig variieren. Ich lasse zusätzlich die Lautstärke erst herungeregelt um nicht jedes mal aus dem Auto zu kippen, wenn das Gerät startet.

Code:
import socket
import threading
import time

# need a delay here. tuned to minimize time on startup freq. If too short
# will be skipped over, too long you here noise until re-tunes.
time.sleep(4.0)

UDP_IP = "127.0.0.1"
UDP_PORT = 5005

sock =socket.socket(socket.AF_INET, socket.SOCK_DGRAM)

# turn down volume
sock.sendto("radio_volume_minus", (UDP_IP, UDP_PORT))
sock.sendto("radio_volume_minus", (UDP_IP, UDP_PORT))
sock.sendto("radio_volume_minus", (UDP_IP, UDP_PORT))
sock.sendto("radio_volume_minus", (UDP_IP, UDP_PORT))
sock.sendto("radio_volume_minus", (UDP_IP, UDP_PORT))
sock.sendto("radio_volume_minus", (UDP_IP, UDP_PORT))
sock.sendto("radio_volume_minus", (UDP_IP, UDP_PORT))
sock.sendto("radio_volume_minus", (UDP_IP, UDP_PORT))
sock.sendto("radio_volume_minus", (UDP_IP, UDP_PORT))
sock.sendto("radio_volume_minus", (UDP_IP, UDP_PORT))
sock.sendto("radio_volume_minus", (UDP_IP, UDP_PORT))
sock.sendto("radio_volume_minus", (UDP_IP, UDP_PORT))
sock.sendto("radio_volume_minus", (UDP_IP, UDP_PORT))
sock.sendto("radio_volume_minus", (UDP_IP, UDP_PORT))

# choose startfrequenz 89.5MHz in my case
sock.sendto("radio_tune_" + "89.5" + "\0", (UDP_IP, UDP_PORT))

# Start searching for Stations
sock.sendto("radio_seek_up+xbmcbuiltin_PlayerControl(next)", (UDP_IP, UDP_PORT))

sock.close()


Als nächstes die Datei /opt/carpc/startup/StartCarPC_stage2 um folgenden Inhalt am Ende erweitern

Code:
# Set Radio freq and vol
sudo python radio_config.py