debug function for message type
build rgb-board / build (push) Successful in 8m34s Details

main
Nathan Wagner 10 months ago
parent 1a0ea1833b
commit 78a145dae8

@ -4,6 +4,7 @@ import (
"bytes"
b64 "encoding/base64"
"encoding/json"
"fmt"
"image"
"image/color"
"log"
@ -105,6 +106,7 @@ func (a *Animation) Next() (image.Image, <-chan time.Time, error) {
select {
case msg := <-a.mqmsg:
json.Unmarshal([]byte(string(msg.Payload())), &incoming)
fmt.Println(incoming.Type)
if incoming.Type == "doorbell" {
a.msg = string(msg.Payload())
a.ctx.DrawString(a.msg, 5, 9)

Loading…
Cancel
Save