mirror of
https://github.com/kidoman/embd
synced 2024-12-22 12:50:19 +01:00
style updates, removing error checking from defer, and closing timer channel
This commit is contained in:
parent
2e3e23a155
commit
38897e416b
@ -49,11 +49,7 @@ func main() {
|
|||||||
if err := pin.Write(embd.Low); err != nil {
|
if err := pin.Write(embd.Low); err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
defer func() {
|
defer pin.SetDirection(embd.In)
|
||||||
if err := pin.SetDirection(embd.In); err != nil {
|
|
||||||
panic(err)
|
|
||||||
}
|
|
||||||
}()
|
|
||||||
|
|
||||||
stepPins[i] = pin
|
stepPins[i] = pin
|
||||||
}
|
}
|
||||||
@ -69,7 +65,6 @@ func main() {
|
|||||||
[]int{0, 0, 0, 1},
|
[]int{0, 0, 0, 1},
|
||||||
[]int{1, 0, 0, 1},
|
[]int{1, 0, 0, 1},
|
||||||
}
|
}
|
||||||
|
|
||||||
stepCount := len(seq) - 1
|
stepCount := len(seq) - 1
|
||||||
stepDir := 2 // Set to 1 or 2 for clockwise, -1 or -2 for counter-clockwise
|
stepDir := 2 // Set to 1 or 2 for clockwise, -1 or -2 for counter-clockwise
|
||||||
|
|
||||||
@ -79,6 +74,7 @@ func main() {
|
|||||||
|
|
||||||
// Start main loop
|
// Start main loop
|
||||||
ticker := time.NewTicker(time.Duration(*stepDelay) * time.Millisecond)
|
ticker := time.NewTicker(time.Duration(*stepDelay) * time.Millisecond)
|
||||||
|
defer timer.Close()
|
||||||
|
|
||||||
var stepCounter int
|
var stepCounter int
|
||||||
for {
|
for {
|
||||||
@ -96,7 +92,6 @@ func main() {
|
|||||||
if err := pin.Write(embd.Low); err != nil {
|
if err := pin.Write(embd.Low); err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stepCounter += stepDir
|
stepCounter += stepDir
|
||||||
|
Loading…
x
Reference in New Issue
Block a user