17 lines
264 B
Go
17 lines
264 B
Go
package sensor
|
|
|
|
import (
|
|
"log"
|
|
|
|
"git.cryptic.systems/fh-trier/go-flucky-server/pkg/types"
|
|
)
|
|
|
|
type DHT11Sensor struct {
|
|
*types.Sensor
|
|
}
|
|
|
|
func (s *DHT11Sensor) Read() (interface{}, error) {
|
|
log.Println("DHT11 Read Method not yet implemented")
|
|
return nil, nil
|
|
}
|