debug function for message type
All checks were successful
build rgb-board / build (push) Successful in 8m34s

This commit is contained in:
2024-02-05 19:00:44 +00:00
parent 1a0ea1833b
commit 78a145dae8

View File

@@ -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)