├── .gitignore ├── LICENSE ├── README.md ├── adv.go ├── att.go ├── bt.go ├── bt.h ├── bt.m ├── btdlg.m ├── cbhandlers.go ├── central.go ├── centralmanager.go ├── centralmanagerdelegate.go ├── characteristic.go ├── cmgr.m ├── core.go ├── cutil.go ├── descriptor.go ├── examples └── discover │ └── main.go ├── go.mod ├── go.sum ├── manager.go ├── mutablecharacteristic.go ├── mutabledescriptor.go ├── mutableservice.go ├── peripheral.go ├── peripheraldelegate.go ├── peripheralmanager.go ├── peripheralmanagerdelegate.go ├── pmgr.m ├── ptrmap.go ├── service.go └── util.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuulLabs-OSS/cbgo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuulLabs-OSS/cbgo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuulLabs-OSS/cbgo/HEAD/README.md -------------------------------------------------------------------------------- /adv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuulLabs-OSS/cbgo/HEAD/adv.go -------------------------------------------------------------------------------- /att.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuulLabs-OSS/cbgo/HEAD/att.go -------------------------------------------------------------------------------- /bt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuulLabs-OSS/cbgo/HEAD/bt.go -------------------------------------------------------------------------------- /bt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuulLabs-OSS/cbgo/HEAD/bt.h -------------------------------------------------------------------------------- /bt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuulLabs-OSS/cbgo/HEAD/bt.m -------------------------------------------------------------------------------- /btdlg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuulLabs-OSS/cbgo/HEAD/btdlg.m -------------------------------------------------------------------------------- /cbhandlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuulLabs-OSS/cbgo/HEAD/cbhandlers.go -------------------------------------------------------------------------------- /central.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuulLabs-OSS/cbgo/HEAD/central.go -------------------------------------------------------------------------------- /centralmanager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuulLabs-OSS/cbgo/HEAD/centralmanager.go -------------------------------------------------------------------------------- /centralmanagerdelegate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuulLabs-OSS/cbgo/HEAD/centralmanagerdelegate.go -------------------------------------------------------------------------------- /characteristic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuulLabs-OSS/cbgo/HEAD/characteristic.go -------------------------------------------------------------------------------- /cmgr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuulLabs-OSS/cbgo/HEAD/cmgr.m -------------------------------------------------------------------------------- /core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuulLabs-OSS/cbgo/HEAD/core.go -------------------------------------------------------------------------------- /cutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuulLabs-OSS/cbgo/HEAD/cutil.go -------------------------------------------------------------------------------- /descriptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuulLabs-OSS/cbgo/HEAD/descriptor.go -------------------------------------------------------------------------------- /examples/discover/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuulLabs-OSS/cbgo/HEAD/examples/discover/main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuulLabs-OSS/cbgo/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuulLabs-OSS/cbgo/HEAD/go.sum -------------------------------------------------------------------------------- /manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuulLabs-OSS/cbgo/HEAD/manager.go -------------------------------------------------------------------------------- /mutablecharacteristic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuulLabs-OSS/cbgo/HEAD/mutablecharacteristic.go -------------------------------------------------------------------------------- /mutabledescriptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuulLabs-OSS/cbgo/HEAD/mutabledescriptor.go -------------------------------------------------------------------------------- /mutableservice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuulLabs-OSS/cbgo/HEAD/mutableservice.go -------------------------------------------------------------------------------- /peripheral.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuulLabs-OSS/cbgo/HEAD/peripheral.go -------------------------------------------------------------------------------- /peripheraldelegate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuulLabs-OSS/cbgo/HEAD/peripheraldelegate.go -------------------------------------------------------------------------------- /peripheralmanager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuulLabs-OSS/cbgo/HEAD/peripheralmanager.go -------------------------------------------------------------------------------- /peripheralmanagerdelegate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuulLabs-OSS/cbgo/HEAD/peripheralmanagerdelegate.go -------------------------------------------------------------------------------- /pmgr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuulLabs-OSS/cbgo/HEAD/pmgr.m -------------------------------------------------------------------------------- /ptrmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuulLabs-OSS/cbgo/HEAD/ptrmap.go -------------------------------------------------------------------------------- /service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuulLabs-OSS/cbgo/HEAD/service.go -------------------------------------------------------------------------------- /util.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuulLabs-OSS/cbgo/HEAD/util.m --------------------------------------------------------------------------------