Ver Fonte

Changed layout of page, included fawsome

Apollo há 3 anos atrás
pai
commit
4d3101f06b
4 ficheiros alterados com 19 adições e 2 exclusões
  1. 1 0
      APP_IDs.md
  2. 15 0
      poster.go
  3. 2 2
      templates/index.html
  4. 1 0
      webserver.go

+ 1 - 0
APP_IDs.md

@@ -1 +1,2 @@
 Pluto Tv - 74519
+Fawsome - 48630

+ 15 - 0
poster.go

@@ -69,6 +69,21 @@ func GetQuery(ip, command string) map[string]interface{} {
 	return r
 }
 
+func DebugInfo(ip string) {
+	// Query the current playing thing, and get the tv channels
+	r := GetQuery(ip, "media-player")
+	name, _ := glom.Glom(r, "player.plugin.-name")
+	id, _ := glom.Glom(r, "player.plugin.-id")
+	/*r1 := GetQuery(ip, "tv-channels")
+	chan_name, _ := glom.Glom(r1, "tv-channels.channel.name")
+	chan_phy_id, _ := glom.Glom(r1, "tv-channels.channel.physical-channel")
+	chan_number, _ := glom.Glom(r1, "tv-channels.channel.number")*/
+
+	// Debug print
+	fmt.Printf("Name: %v (%v)\r\n", name, id)
+	//fmt.Printf("Channel: %v (%v / %v)\r\n", chan_name, chan_phy_id, chan_number)
+}
+
 func examplePost() {
 	keys := GetKeys()
 	_ = keys // Keep alive

+ 2 - 2
templates/index.html

@@ -11,7 +11,7 @@
     <body>
         <div class="grid-x">
             <h1 class="large-12 medium-12 small-12 cell text-center">goRoku Controller</h1>
-            <div class="large-6 medium-6 small-6 cell text-center">
+            <div class="large-12 medium-12 small-12 cell text-center">
                 <h3>TV:</h3>
                 <p>
                     <button type="button" class="alert button" onclick="sendCommandTV('power')">Power</button><br>
@@ -19,7 +19,7 @@
                     <button type="button" class="button" onclick="sendCommandTV('up')">^</button><br>
                     <button type="button" class="button" onclick="sendCommandTV('left')"><</button> <button type="button" class="success button" onclick="sendCommandTV('ok')">Ok</button> <button type="button" class="button" onclick="sendCommandTV('right')">></button><br>
                     <button type="button" class="button" onclick="sendCommandTV('down')">V</button><br>
-                    <button type="button" class="button" onclick="sendCommandTV('reload')">Reload</button> <button type="button" class="button" onclick="sendCommandTV('star')">*</button><br>
+                    <button type="button" class="button" onclick="sendCommandTV('reload')">🔁</button> <button type="button" class="button" onclick="sendCommandTV('star')">*</button><br>
                     <button type="button" class="button" onclick="sendCommandTV('rewind')"><<</button> <button type="button" class="button" onclick="sendCommandTV('play-pause')">Play/Pause</button> <button type="button" class="button" onclick="sendCommandTV('fast-forward')">>></button><br>
                     <button type="button" class="button" onclick="sendCommandTV('vol+')">Vol +</button> <button type="button" class="button" onclick="sendCommandTV('mute')">Vol Mute</button> <button type="button" class="button" onclick="sendCommandTV('vol-')">Vol -</button><br>
                 </p>

+ 1 - 0
webserver.go

@@ -11,6 +11,7 @@ import (
 const tv_ip = "192.168.254.75"
 
 func homepage(c echo.Context) error {
+	DebugInfo(tv_ip)
 	//return c.String(http.StatusOK, "Hello World!")
 	file, err := os.ReadFile("templates/index.html")
 	if err != nil {