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:
docker:
- 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:
- checkout
- run: tinygo version

View file

@ -1,7 +1,7 @@
# Go Bluetooth
[![CircleCI](https://circleci.com/gh/aykevl/go-bluetooth/tree/master.svg?style=svg)](https://circleci.com/gh/aykevl/go-bluetooth/tree/master)
[![GoDoc](https://godoc.org/github.com/aykevl/go-bluetooth?status.svg)](https://godoc.org/github.com/aykevl/go-bluetooth)
[![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/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:

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -1,7 +1,7 @@
package bluetooth
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

2
go.mod
View file

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