badges/defs_default.go

27 lines
510 B
Go
Raw Normal View History

2026-04-15 20:50:12 +00:00
//go:build !gopher_badge && !pybadge && !nicenano
// +build !gopher_badge,!pybadge,!nicenano
2026-04-14 17:21:59 +00:00
package main
// Default definitions for IDE support and testing
// This file is not compiled when using a specific target
const (
2026-04-15 20:50:12 +00:00
hardware_name = "DEFAULT"
2026-04-14 17:21:59 +00:00
displayWidth = 320
displayHeight = 240
)
const (
2026-04-15 20:50:12 +00:00
cornerRadius = 10
topBandHeight = 54
bottomBandHeight = 20
helloY = 34
myNameIsY = 54
gophersY = 208
gophersX = 84
2026-04-14 17:21:59 +00:00
2026-04-15 20:50:12 +00:00
menuItemSpace = 20
menuCircleR = 6
2026-04-14 17:21:59 +00:00
)