chat history, better turn queue updates

This commit is contained in:
legop3
2026-01-15 02:55:46 -05:00
parent 23fe03ca54
commit 37927d82af
20 changed files with 585 additions and 36 deletions
+6
View File
@@ -29,6 +29,7 @@ type inboundMessage struct {
TTS *ttsPayload `json:"tts,omitempty"`
NightVision *nightVisionPayload `json:"nightVision,omitempty"`
Song *songPayload `json:"song,omitempty"`
IR *irPayload `json:"ir,omitempty"`
}
type driveDirectPayload struct {
@@ -79,6 +80,11 @@ type songNote struct {
Duration int `json:"duration"`
}
type irPayload struct {
Code int `json:"code"`
Repeat int `json:"repeat,omitempty"`
}
type ackMessage struct {
Type string `json:"type"`
ID string `json:"id"`