mirror of
https://github.com/cmur2/miflorad.git
synced 2025-06-26 22:30:24 +02:00
module: setup project structure, document and add utilities
This commit is contained in:
175
cmd/munin-miflora/main.go
Normal file
175
cmd/munin-miflora/main.go
Normal file
@ -0,0 +1,175 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"flag"
|
||||
"fmt"
|
||||
"os"
|
||||
"regexp"
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"miflorad/common"
|
||||
|
||||
"github.com/currantlabs/gatt"
|
||||
"github.com/currantlabs/gatt/examples/option"
|
||||
)
|
||||
|
||||
const discoveryTimeout = 4 * time.Second
|
||||
const connectionTimeout = 4 * time.Second
|
||||
|
||||
type DiscoveryResult struct {
|
||||
p gatt.Peripheral
|
||||
a *gatt.Advertisement
|
||||
rssi int
|
||||
}
|
||||
|
||||
var discoveryDone = make(chan DiscoveryResult)
|
||||
var connectionDone = make(chan struct{})
|
||||
|
||||
func onStateChanged(device gatt.Device, state gatt.State) {
|
||||
fmt.Fprintln(os.Stderr, "State:", state)
|
||||
switch state {
|
||||
case gatt.StatePoweredOn:
|
||||
fmt.Fprintln(os.Stderr, "Scanning...")
|
||||
device.Scan([]gatt.UUID{}, false)
|
||||
return
|
||||
default:
|
||||
device.StopScanning()
|
||||
}
|
||||
}
|
||||
|
||||
func onPeriphDiscovered(p gatt.Peripheral, a *gatt.Advertisement, rssi int) {
|
||||
id := strings.ToUpper(flag.Args()[1])
|
||||
if strings.ToUpper(p.ID()) != id {
|
||||
return
|
||||
}
|
||||
|
||||
// Stop scanning once we've got the peripheral we're looking for.
|
||||
p.Device().StopScanning()
|
||||
|
||||
discoveryDone <- DiscoveryResult{p, a, rssi}
|
||||
}
|
||||
|
||||
func onPeriphConnected(p gatt.Peripheral, err error) {
|
||||
fmt.Fprintln(os.Stderr, "Connected")
|
||||
|
||||
// Note: can hang due when device has terminated the connection on it's own already
|
||||
// defer p.Device().CancelConnection(p)
|
||||
|
||||
if err := p.SetMTU(500); err != nil {
|
||||
fmt.Fprintf(os.Stderr, "Failed to set MTU, err: %s\n", err)
|
||||
}
|
||||
|
||||
// Discover services and characteristics
|
||||
{
|
||||
_, err := p.DiscoverServices([]gatt.UUID{common.MifloraServiceUUID})
|
||||
if err != nil {
|
||||
fmt.Fprintf(os.Stderr, "Failed to discover services, err: %s\n", err)
|
||||
return
|
||||
}
|
||||
}
|
||||
for _, service := range p.Services() {
|
||||
_, err := p.DiscoverCharacteristics(nil, service)
|
||||
if err != nil {
|
||||
fmt.Fprintf(os.Stderr, "Failed to discover characteristics, err: %s\n", err)
|
||||
return
|
||||
}
|
||||
}
|
||||
|
||||
prefix := flag.Args()[0]
|
||||
|
||||
regexNonAlphaNumeric, err4 := regexp.Compile("[^a-z0-9]+")
|
||||
if err4 != nil {
|
||||
fmt.Fprintf(os.Stderr, "Failed to compile regex, err: %s\n", err4)
|
||||
}
|
||||
id := regexNonAlphaNumeric.ReplaceAllString(strings.ToLower(flag.Args()[1]), "")
|
||||
|
||||
metaData, err := common.MifloraRequestVersionBattery(p)
|
||||
if err != nil {
|
||||
fmt.Fprintf(os.Stderr, "Failed to request version battery, err: %s\n", err)
|
||||
return
|
||||
}
|
||||
|
||||
fmt.Fprintf(os.Stderr, "Firmware version: %s\n", metaData.FirmwareVersion)
|
||||
|
||||
fmt.Fprintf(os.Stdout, "%s.miflora.%s.battery_level %d %d\n", prefix, id, metaData.BatteryLevel, time.Now().Unix())
|
||||
fmt.Fprintf(os.Stdout, "%s.miflora.%s.firmware_version %s %d\n", prefix, id, metaData.NumericFirmwareVersion(), time.Now().Unix())
|
||||
|
||||
// for the newer models a magic number must be written before we can read the current data
|
||||
if metaData.FirmwareVersion >= "2.6.6" {
|
||||
err2 := common.MifloraRequestModeChange(p)
|
||||
if err2 != nil {
|
||||
fmt.Fprintf(os.Stderr, "Failed to request mode change, err: %s\n", err2)
|
||||
return
|
||||
}
|
||||
}
|
||||
|
||||
sensorData, err3 := common.MifloraRequstSensorData(p)
|
||||
if err3 != nil {
|
||||
fmt.Fprintf(os.Stderr, "Failed to request sensor data, err: %s\n", err3)
|
||||
return
|
||||
}
|
||||
fmt.Fprintf(os.Stdout, "%s.miflora.%s.temperature %.1f %d\n", prefix, id, sensorData.Temperature, time.Now().Unix())
|
||||
fmt.Fprintf(os.Stdout, "%s.miflora.%s.brightness %d %d\n", prefix, id, sensorData.Brightness, time.Now().Unix())
|
||||
fmt.Fprintf(os.Stdout, "%s.miflora.%s.moisture %d %d\n", prefix, id, sensorData.Moisture, time.Now().Unix())
|
||||
fmt.Fprintf(os.Stdout, "%s.miflora.%s.conductivity %d %d\n", prefix, id, sensorData.Conductivity, time.Now().Unix())
|
||||
}
|
||||
|
||||
func onPeriphDisconnected(p gatt.Peripheral, err error) {
|
||||
fmt.Fprintln(os.Stderr, "Disconnected")
|
||||
close(connectionDone)
|
||||
}
|
||||
|
||||
func main() {
|
||||
flag.Parse()
|
||||
if len(flag.Args()) != 2 {
|
||||
fmt.Fprintf(os.Stderr, "Usage: %s [options] prefix peripheral-id\n", os.Args[0])
|
||||
os.Exit(1)
|
||||
}
|
||||
|
||||
device, err := gatt.NewDevice(option.DefaultClientOptions...)
|
||||
if err != nil {
|
||||
fmt.Fprintf(os.Stderr, "Failed to open device, err: %s\n", err)
|
||||
os.Exit(1)
|
||||
}
|
||||
|
||||
// Register discovery handler
|
||||
device.Handle(gatt.PeripheralDiscovered(onPeriphDiscovered))
|
||||
|
||||
device.Init(onStateChanged)
|
||||
|
||||
var discoveryResult DiscoveryResult
|
||||
|
||||
select {
|
||||
case discoveryResult = <-discoveryDone:
|
||||
fmt.Fprintln(os.Stderr, "Discovery done")
|
||||
case <-time.After(discoveryTimeout):
|
||||
fmt.Fprintln(os.Stderr, "Discovery timed out")
|
||||
device.StopScanning()
|
||||
device.Stop()
|
||||
os.Exit(1)
|
||||
}
|
||||
|
||||
fmt.Fprintf(os.Stderr, "Discovered peripheral ID:%s, NAME:(%s), RSSI:%d\n", discoveryResult.p.ID(), discoveryResult.p.Name(), discoveryResult.rssi)
|
||||
|
||||
// Register connection handlers
|
||||
device.Handle(
|
||||
gatt.PeripheralConnected(onPeriphConnected),
|
||||
gatt.PeripheralDisconnected(onPeriphDisconnected),
|
||||
)
|
||||
|
||||
device.Connect(discoveryResult.p)
|
||||
|
||||
select {
|
||||
case <-connectionDone:
|
||||
fmt.Fprintln(os.Stderr, "Connection done")
|
||||
case <-time.After(connectionTimeout):
|
||||
fmt.Fprintln(os.Stderr, "Connection timed out")
|
||||
// TODO: can hang due when device has terminated the connection on it's own already
|
||||
// device.CancelConnection(discoveryResult.p)
|
||||
os.Exit(1)
|
||||
}
|
||||
|
||||
// Note: calls CancelConnetcion() and thus suffers the same problem, kernel will cleanup after our process finishes
|
||||
// device.Stop()
|
||||
}
|
Reference in New Issue
Block a user