feat(ezcoo): serial driver for EZCOO HDMI matrix

This commit is contained in:
2026-05-24 18:52:52 +03:00
parent e5dd77a00d
commit e99616a135
6 changed files with 256 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
package ezcoo
import (
"fmt"
)
func parseInt(s string) (int, error) {
var n int
_, err := fmt.Sscanf(s, "%d", &n)
return n, err
}