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:
  • 5 Bewertung(en) - 5 im Durchschnitt
  • 1
  • 2
  • 3
  • 4
  • 5
Diskussionsthread - CarPi/CarPC Image 2016 (Raspbian Jessie, Kodi 15.2)
Hast du mal ein frisches Raspbian getestet? Geht es da?...
(11.03.2016, 15:54)Blueagle schrieb: Erst mal gute arbeit mit dem image.. !

Aber eins geht bei mir nicht.. ich abe mein GPS ueber die seriellen GPIOs am rasp.
ich sehe das, dass modul, empfang bekommt.. aber es kommt nichts im navit an.
ich habde auch die einstellung auf ttyAMA0 gestellt.. aber es geht immer noch nicht.

wurde da was geaendert das es so nicht mehr gehen kann?

Hab den "Fehler" gefunden... Am RPi3 haben die was geändert und das Bluetooth läuft ueber den Anschluss. Deswegen geht es nicht mehr.. Mit dem 2er geht's.


Gesendet von iPhone mit Tapatalk
Aha ok...läuft das evtl über AMA1?
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
Was ist ama1 anderes... Bin noch nicht so bewandert in der Sache..

Edit: habe das dazu gefunden:
http://www.briandorey.com/post/Raspberry...Workaround

Aber noch keine Zeit gehabt zum testen.
(12.03.2016, 09:29)cbrauweiler schrieb: Hab ein Script gebaut das Frequenz und Volume einstellt. Muss nur noch gucken wo man das einbaut damit es automatisch nach dem Start ausgeführt wird.

Würdest du uns das Skript zur Verfügung stellen?
/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
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
Super, danke
Funktioniert. Hab mir die sleeptime auf 3 gesetzt, so passt es besser für meinen Pi.

Gesendet von meinem SM-G928F mit Tapatalk
Damit hats bei mir nicht funktioniert. Muss man bissel mit rumspielen.
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
Ja, nach dem 5-6 Versuch hatte ich dann das richtige Timing Big Grin

Gesendet von meinem SM-G928F mit Tapatalk
Noch so am Rande...das Bootvideo unter Jessie fluppt ja nicht. Was aber geht ist ein statisches Bild.

Einfach mal in die /etc/init.d/asplashscreen gucken. Da habe ich eine Zeile auskommentiert wie man ein Bild einbettet.
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


Gehe zu:


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