FireTV Modul [Testversion]

Moin,
bekomme ihn erst am 03.12.

Leider hat ihn die Harmony Datenbank auch nicht drin. Weißt du zufällig ob Logitech noch neue Geräte einpflegt in der Datenbank?

VG
Stefan

Sorry nein. Ich habe neue Geräte immer mit Geräten aus der Datenbank füttern können und ich schwenke im Moment auf die Remote 2/3 um. Wolf hatte ja noch die Idee es als NVidia Shield Pro zu versuchen. Ich habe ein Gerät auch als „Computer“ gepaired damit ich auch Ziffern habe.

Ralf

Ich habe diese Woche von Waipu auf MagentaTV umgestellt. Da dort neben MagentaTV auch Disney+, AppleTV und RTL+ drin sind musste ich das Modul ein klein wenig erweitern. Hier die Änderungen an module.php:

	public function MagentaTV(bool $fire)
	{
		if ($fire){
			$this->Send_App(" de.telekom.magentatv.firetv ");
		}
		else{
			$this->Send_App("de.telekom.magentatv.tv");
		}
	}

	public function AppleTV(bool $fire)
	{
		if ($fire){
			$this->Send_Activity("com.apple.atve.amazon.appletv/.MainActivity");
		}
		else{
			$this->Send_Activity("com.apple.atve.androidtv.appletv/.MainActivity");
		}
	}

	public function DisneyPlus(bool $fire)
	{
		if ($fire){
			$this->Send_App("com.disney.disneyplus");
		}
		else{
			$this->Send_App("com.disney.disneyplus");
		}
	}

	public function RtlPlus(bool $fire)
	{
		if ($fire){
			$this->Send_App("de.cbc.tvnow.firetv");
		}
		else{
			$this->Send_App("de.rtli.tvnow");
		}
	}

damit kann man dann auch die 4 Apps bequem per IPS starten. Getestet habe ich nur AndroidTV. Wenn etwas bei FireTV nicht klappt bitte melden.

Ralf