Files
cheesy-arena-lite/plc/coil_string.go
2020-03-22 13:38:49 -07:00

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]]
}