mirror of
https://github.com/Team254/cheesy-arena-lite.git
synced 2026-03-09 05:36:45 -04:00
32 lines
888 B
Go
32 lines
888 B
Go
// Code generated by "stringer -type=coil"; DO NOT EDIT.
|
|
|
|
package plc
|
|
|
|
import "strconv"
|
|
|
|
func _() {
|
|
// An "invalid array index" compiler error signifies that the constant values have changed.
|
|
// Re-run the stringer command to generate them again.
|
|
var x [1]struct{}
|
|
_ = x[heartbeat-0]
|
|
_ = x[matchReset-1]
|
|
_ = x[stackLightGreen-2]
|
|
_ = x[stackLightOrange-3]
|
|
_ = x[stackLightRed-4]
|
|
_ = x[stackLightBlue-5]
|
|
_ = x[stackLightBuzzer-6]
|
|
_ = x[fieldResetLight-7]
|
|
_ = x[coilCount-8]
|
|
}
|
|
|
|
const _coil_name = "heartbeatmatchResetstackLightGreenstackLightOrangestackLightRedstackLightBluestackLightBuzzerfieldResetLightcoilCount"
|
|
|
|
var _coil_index = [...]uint8{0, 9, 19, 34, 50, 63, 77, 93, 108, 117}
|
|
|
|
func (i coil) String() string {
|
|
if i < 0 || i >= coil(len(_coil_index)-1) {
|
|
return "coil(" + strconv.FormatInt(int64(i), 10) + ")"
|
|
}
|
|
return _coil_name[_coil_index[i]:_coil_index[i+1]]
|
|
}
|