Rest of the uint64 stuff
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/tag Build is passing Details

Signed-off-by: Martyn Ranyard <m@rtyn.berlin>
This commit is contained in:
Martyn 2020-07-13 18:16:50 +02:00
parent 4d72b04cc1
commit ffec6c8260
2 changed files with 7 additions and 7 deletions

View File

@ -149,10 +149,10 @@ func main() {
}
if overrideEffect.Effect == "queue" {
if currentEffect.Duration > 0 {
if currentEffect.Duration%uint16(msDelay) != 0 {
currentEffect.Duration = uint16(currentEffect.Duration/uint16(msDelay)) * uint16(msDelay)
if currentEffect.Duration%uint64(msDelay) != 0 {
currentEffect.Duration = uint64(currentEffect.Duration/uint64(msDelay)) * uint64(msDelay)
}
currentEffect.Duration -= uint16(msDelay)
currentEffect.Duration -= uint64(msDelay)
} else {
if len(globalEffectChannel) > 0 {
previousEffect.Effect = "queue"

View File

@ -40,7 +40,7 @@ func PatternHandler(response http.ResponseWriter, request *http.Request) {
_, found := vars["duration"]
if found {
i, _ := strconv.ParseUint(vars["duration"], 10, 64)
e.Duration = uint16(i)
e.Duration = i
} else {
e.Duration = 5000
}
@ -68,7 +68,7 @@ func ColourHandler(response http.ResponseWriter, request *http.Request) {
_, found := vars["duration"]
if found {
i, _ := strconv.ParseUint(vars["duration"], 10, 64)
e.Duration = uint16(i)
e.Duration = i
} else {
e.Duration = 5000
}
@ -97,8 +97,8 @@ func FadeHandler(response http.ResponseWriter, request *http.Request) {
e.Effect = "fade"
_, found := vars["duration"]
if found {
i, _ := strconv.Atoi(vars["duration"])
e.Duration = uint16(i)
i, _ := strconv.ParseUint(vars["duration"], 10, 64)
e.Duration = i
} else {
e.Duration = 5000
}