Move to github.com/tinygo-org/bluetooth

This commit is contained in:
Ayke van Laethem 2020-05-31 16:45:26 +02:00
parent f91f73ede2
commit 518debbbfe
No known key found for this signature in database
GPG key ID: E97FF5335DFDFDED
9 changed files with 10 additions and 10 deletions

View file

@ -4,7 +4,7 @@ jobs:
build: build:
docker: docker:
- image: tinygo/tinygo-dev - image: tinygo/tinygo-dev
working_directory: /usr/local/go/src/github.com/aykevl/go-bluetooth working_directory: /usr/local/go/src/github.com/tinygo-org/bluetooth
steps: steps:
- checkout - checkout
- run: tinygo version - run: tinygo version

View file

@ -1,7 +1,7 @@
# Go Bluetooth # Go Bluetooth
[![CircleCI](https://circleci.com/gh/aykevl/go-bluetooth/tree/master.svg?style=svg)](https://circleci.com/gh/aykevl/go-bluetooth/tree/master) [![CircleCI](https://circleci.com/gh/tinygo-org/bluetooth/tree/master.svg?style=svg)](https://circleci.com/gh/tinygo-org/bluetooth/tree/master)
[![GoDoc](https://godoc.org/github.com/aykevl/go-bluetooth?status.svg)](https://godoc.org/github.com/aykevl/go-bluetooth) [![GoDoc](https://godoc.org/github.com/tinygo-org/bluetooth?status.svg)](https://godoc.org/github.com/tinygo-org/bluetooth)
This package attempts to build a cross-platform Bluetooth Low Energy module for Go. It currently supports the following systems: This package attempts to build a cross-platform Bluetooth Low Energy module for Go. It currently supports the following systems:

View file

@ -1,8 +1,8 @@
package bluetooth package bluetooth
import ( import (
"github.com/aykevl/go-bluetooth/winbt"
"github.com/go-ole/go-ole" "github.com/go-ole/go-ole"
"github.com/tinygo-org/bluetooth/winbt"
) )
type Adapter struct { type Adapter struct {

View file

@ -3,7 +3,7 @@ package main
import ( import (
"time" "time"
"github.com/aykevl/go-bluetooth" "github.com/tinygo-org/bluetooth"
) )
// flags + local name // flags + local name

View file

@ -3,7 +3,7 @@ package main
import ( import (
"time" "time"
"github.com/aykevl/go-bluetooth" "github.com/tinygo-org/bluetooth"
) )
// flags + local name // flags + local name

View file

@ -4,7 +4,7 @@ import (
"machine" "machine"
"time" "time"
"github.com/aykevl/go-bluetooth" "github.com/tinygo-org/bluetooth"
) )
// flags + local name // flags + local name

View file

@ -1,7 +1,7 @@
package main package main
import ( import (
"github.com/aykevl/go-bluetooth" "github.com/tinygo-org/bluetooth"
) )
func main() { func main() {

View file

@ -1,7 +1,7 @@
package bluetooth package bluetooth
import ( import (
"github.com/aykevl/go-bluetooth/winbt" "github.com/tinygo-org/bluetooth/winbt"
) )
// Scan starts a BLE scan. It is stopped by a call to StopScan. A common pattern // Scan starts a BLE scan. It is stopped by a call to StopScan. A common pattern

2
go.mod
View file

@ -1,4 +1,4 @@
module github.com/aykevl/go-bluetooth module github.com/tinygo-org/bluetooth
go 1.14 go 1.14