1
0
Fork 0

feat(assets): adding logo data

This commit is contained in:
Henrik Hautakoski 2025-10-06 18:47:27 +02:00
parent 4319ec55e5
commit dc83316886

14
assets/logo.go Normal file
View file

@ -0,0 +1,14 @@
package assets
const (
LOGO_STRIDE = 20
LOGO_HEIGHT = 5
)
var Logo = [LOGO_HEIGHT * LOGO_STRIDE]byte{
1, 1, 1, 0, 2, 2, 0, 3, 3, 3, 0, 4, 4, 0, 0, 5, 0, 6, 6, 6,
0, 1, 0, 0, 2, 0, 0, 0, 3, 0, 0, 4, 0, 4, 0, 5, 0, 6, 0, 0,
0, 1, 0, 0, 2, 2, 0, 0, 3, 0, 0, 4, 4, 0, 0, 5, 0, 0, 6, 0,
0, 1, 0, 0, 2, 0, 0, 0, 3, 0, 0, 4, 0, 4, 0, 5, 0, 0, 0, 6,
0, 1, 0, 0, 2, 2, 0, 0, 3, 0, 0, 4, 0, 4, 0, 5, 0, 6, 6, 6,
}