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
/showthread.php 28 require_once
Warning [2] Undefined property: MyLanguage::$thread_modes - Line: 43 - File: showthread.php(1621) : eval()'d code PHP 8.2.2 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/showthread.php(1621) : eval()'d code 43 errorHandler->error_callback
/showthread.php 1621 eval




Themabewertung:
  • 0 Bewertung(en) - 0 im Durchschnitt
  • 1
  • 2
  • 3
  • 4
  • 5
RadioFM 2.1.3 (Nextgen)
#71
u need the carpccontroller with config file. u can extract it from the zip file. its under /opt/carpc
CarPi: RPi 3 mit 7" RPi Touchscreen & PiUSV+, Jessie, Kodi 15.2
Testing: Raspbian Jessie mit Kodi 15.2 - Step by Step
Projekte: SmartHome, Ambilight
Zitieren
#72
Is anyone have try to recompile carpc controller in "step-by-step" image, to change basic settings of radio?
Zitieren
#73
yes but it is difficult because of a missing file in the git and i didn`t found it anymore
CarPi: RPi 3 mit 7" RPi Touchscreen & PiUSV+, Jessie, Kodi 15.2
Testing: Raspbian Jessie mit Kodi 15.2 - Step by Step
Projekte: SmartHome, Ambilight
Zitieren
#74
(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.
Zitieren
#75
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.
CarPi: RPi 3 mit 7" RPi Touchscreen & PiUSV+, Jessie, Kodi 15.2
Testing: Raspbian Jessie mit Kodi 15.2 - Step by Step
Projekte: SmartHome, Ambilight
Zitieren
#76
(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
Zitieren


Gehe zu:


Benutzer, die gerade dieses Thema anschauen: 2 Gast/Gäste
RasPiCarProjekt