26 lines
510 B
Go
26 lines
510 B
Go
//go:build !gopher_badge && !pybadge && !nicenano
|
|
// +build !gopher_badge,!pybadge,!nicenano
|
|
|
|
package main
|
|
|
|
// Default definitions for IDE support and testing
|
|
// This file is not compiled when using a specific target
|
|
|
|
const (
|
|
hardware_name = "DEFAULT"
|
|
displayWidth = 320
|
|
displayHeight = 240
|
|
)
|
|
|
|
const (
|
|
cornerRadius = 10
|
|
topBandHeight = 54
|
|
bottomBandHeight = 20
|
|
helloY = 34
|
|
myNameIsY = 54
|
|
gophersY = 208
|
|
gophersX = 84
|
|
|
|
menuItemSpace = 20
|
|
menuCircleR = 6
|
|
)
|