bluetooth

package
v0.2.6 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 17, 2026 License: MIT Imports: 3 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Connect

func Connect(deviceID string) error

func Disconnect

func Disconnect(deviceID string) error

func Read

func Read(deviceID, service, characteristic string) ([]byte, error)

func SetProvider

func SetProvider(p Provider)

func Write

func Write(deviceID, service, characteristic string, data []byte) error

Types

type BLEDevice

type BLEDevice struct {
	ID   string `json:"id"`
	Name string `json:"name"`
	RSSI int    `json:"rssi"`
}

func RequestDevice

func RequestDevice(filters map[string]any) (*BLEDevice, error)

type Provider

type Provider interface {
	RequestDevice(filters map[string]any) (*BLEDevice, error)
	Connect(deviceID string) error
	Disconnect(deviceID string) error
	Read(deviceID, service, characteristic string) ([]byte, error)
	Write(deviceID, service, characteristic string, data []byte) error
}

Provider is a native BLE backend. On mobile the shell registers one via SetProvider (android.bluetooth.le / CoreBluetooth). On desktop there is no built-in stack; Chromium-based webviews expose Web Bluetooth as a fallback.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL