andygeiss/esp32-controller

View on GitHub
controller.go

Summary

Maintainability
A
0 mins
Test Coverage
package esp32_controller

// Controller specifies the behaviour of a system which can be setup initially and is able to loop a specific business logic.
type Controller interface {
    Loop() error
    Setup() error
}