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
Diskussionsthread - CarPi/CarPC Image 2016 (Raspbian Jessie, Kodi 15.2) - Druckversion

+- RasPiCar Projekt Forum (https://RasPiCarProjekt.de)
+-- Forum: Userbereich (https://RasPiCarProjekt.de/forumdisplay.php?fid=35)
+--- Forum: Projekte (https://RasPiCarProjekt.de/forumdisplay.php?fid=40)
+--- Thema: Diskussionsthread - CarPi/CarPC Image 2016 (Raspbian Jessie, Kodi 15.2) (/showthread.php?tid=735)



RE: Diskussionsthread - CarPi/CarPC Image 2016 (Raspbian Jessie, Kodi 15.2) - Thedk - 14.12.2016

Falls irgendein Bauteil am Controller defekt ist, wirst du das auch nicht sehen. Wenn ich mir dann mein zweiten Touch Set bestelle (Riss im Glas), hätte ich einen Controller über, das könnte aber nochn bisschen dauern.


Diskussionsthread - CarPi/CarPC Image 2016 (Raspbian Jessie, Kodi 15.2) - Gekko94 - 14.12.2016

Ich hab Pollin auch schonmal ne Email geschrieben.
Habe durch Zufall bei eBay auch einen entdeckt, weiß aber nicht ob er funktionieren würde, die Nummer ist zum Schluss leicht anders, aber vom Aufbau ist er der selbe.
http://m.ebay.de/itm/322354528121


Gesendet von iPhone mit Tapatalk


RE: Diskussionsthread - CarPi/CarPC Image 2016 (Raspbian Jessie, Kodi 15.2) - cbrauweiler - 14.12.2016

Leuchtet auf dem Controller eine LED auf wenn du auf den Bildschirm tippst? Darüber könnte man erkennen ob der Controller an sich etwas empfängt und reagiert.


Diskussionsthread - CarPi/CarPC Image 2016 (Raspbian Jessie, Kodi 15.2) - Gekko94 - 14.12.2016

Nein leider leuchtet da nix


RE: Diskussionsthread - CarPi/CarPC Image 2016 (Raspbian Jessie, Kodi 15.2) - cbrauweiler - 14.12.2016

Dann ist der Controller hopps.


Diskussionsthread - CarPi/CarPC Image 2016 (Raspbian Jessie, Kodi 15.2) - Gekko94 - 14.12.2016

Könnte der oben gepostete funktionieren?


RE: Diskussionsthread - CarPi/CarPC Image 2016 (Raspbian Jessie, Kodi 15.2) - cbrauweiler - 14.12.2016

Keine Ahnung. Kenne die genaue Produktspezifikationen vom Pollin nicht. Aber die schicken dir auch Ersatzteile.


Diskussionsthread - CarPi/CarPC Image 2016 (Raspbian Jessie, Kodi 15.2) - Gekko94 - 14.12.2016

Dann hoffe ich das die sich bald auch meine Email melden. Habe trotzdem mal den Controller bestellt, vielleicht funktioniert er ja


RE: Diskussionsthread - CarPi/CarPC Image 2016 (Raspbian Jessie, Kodi 15.2) - Thedk - 14.12.2016

Bist du bei Facebook? Da melden die sich relativ schnell.


RE: Diskussionsthread - CarPi/CarPC Image 2016 (Raspbian Jessie, Kodi 15.2) - Thedk - 29.12.2016

(12.03.2016, 20:02)cbrauweiler schrieb: /Edit:
Ok habs hinbekommen.

/opt/carpc/startup/radio_config.py
Code:
import socket
import threading
import time

time.sleep(10)

UDP_IP = "127.0.0.1"
UDP_PORT = 5005

# Path to stations preset file
file = open('/home/pi/.kodi/addons/plugin.program.radioFM/resources/stations','r')
# Read the stations file into string and close it
data = file.readlines()
file.close()
# Take first line from station list and split it up by spaces
item = data[0]
requestedFrequency = item.split(' ')
# Use the first value of the split string for first station to tune radio to

sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
sock.sendto("radio_tune_" + requestedFrequency[0] + "\0", (UDP_IP, UDP_PORT))
sock.sendto("radio_volume_plus", (UDP_IP, UDP_PORT))
sock.sendto("radio_volume_plus", (UDP_IP, UDP_PORT))
sock.sendto("radio_volume_plus", (UDP_IP, UDP_PORT))
sock.sendto("radio_volume_plus", (UDP_IP, UDP_PORT))
sock.sendto("radio_volume_plus", (UDP_IP, UDP_PORT))
sock.sendto("radio_volume_plus", (UDP_IP, UDP_PORT))
sock.sendto("radio_volume_plus", (UDP_IP, UDP_PORT))
sock.sendto("radio_volume_plus", (UDP_IP, UDP_PORT))
sock.sendto("radio_volume_plus", (UDP_IP, UDP_PORT))
sock.sendto("radio_volume_plus", (UDP_IP, UDP_PORT))
sock.sendto("radio_volume_plus", (UDP_IP, UDP_PORT))
sock.sendto("radio_volume_plus", (UDP_IP, UDP_PORT))
sock.sendto("radio_volume_plus", (UDP_IP, UDP_PORT))
sock.sendto("radio_volume_plus", (UDP_IP, UDP_PORT))

sock.close()

Eigentlich müsste es auch gehen 1x "radio_volume_15" auszuführen, aber das frisst er nicht. Dafür halt 14x "radio_volume_plus".

Am Ende von /opt/carpc/startup/StartCarPC_stage2
Code:
# Set Radio freq and vol
sudo python radio_config.py


Den station Datei: /home/pi/.kodi/addons/plugin.program.radioFM/resources/stations gibts ja nicht mehr. Müsste ich mir jetzt einfach eine Xml in den Pfad legen und den Sender eintragen und es funktioniert?
Hat sich sonst eigentlich bei der Lautstärke seit dem was geändert? Bei mir ist die Lautstärke beim start schon ziemlich hoch eingestellt.