From 518debbbfe3ce79090550dd08848860c7e56c1ea Mon Sep 17 00:00:00 2001 From: Ayke van Laethem Date: Sun, 31 May 2020 16:45:26 +0200 Subject: [PATCH] Move to github.com/tinygo-org/bluetooth --- .circleci/config.yml | 2 +- README.md | 4 ++-- adapter_windows.go | 2 +- examples/advertisement/main.go | 2 +- examples/heartrate/main.go | 2 +- examples/ledcolor/main.go | 2 +- examples/scanner/main.go | 2 +- gap_windows.go | 2 +- go.mod | 2 +- 9 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 936f0042..bf67440e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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 diff --git a/README.md b/README.md index b928da2a..4ab66899 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/adapter_windows.go b/adapter_windows.go index 1ef0cbe2..46b00847 100644 --- a/adapter_windows.go +++ b/adapter_windows.go @@ -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 { diff --git a/examples/advertisement/main.go b/examples/advertisement/main.go index 62e7f521..42556e70 100644 --- a/examples/advertisement/main.go +++ b/examples/advertisement/main.go @@ -3,7 +3,7 @@ package main import ( "time" - "github.com/aykevl/go-bluetooth" + "github.com/tinygo-org/bluetooth" ) // flags + local name diff --git a/examples/heartrate/main.go b/examples/heartrate/main.go index 0780fc5d..1ef8386a 100644 --- a/examples/heartrate/main.go +++ b/examples/heartrate/main.go @@ -3,7 +3,7 @@ package main import ( "time" - "github.com/aykevl/go-bluetooth" + "github.com/tinygo-org/bluetooth" ) // flags + local name diff --git a/examples/ledcolor/main.go b/examples/ledcolor/main.go index 36a4ebed..5c227441 100644 --- a/examples/ledcolor/main.go +++ b/examples/ledcolor/main.go @@ -4,7 +4,7 @@ import ( "machine" "time" - "github.com/aykevl/go-bluetooth" + "github.com/tinygo-org/bluetooth" ) // flags + local name diff --git a/examples/scanner/main.go b/examples/scanner/main.go index a661703f..e9710d1c 100644 --- a/examples/scanner/main.go +++ b/examples/scanner/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/aykevl/go-bluetooth" + "github.com/tinygo-org/bluetooth" ) func main() { diff --git a/gap_windows.go b/gap_windows.go index dd64cf6c..7b3f4618 100644 --- a/gap_windows.go +++ b/gap_windows.go @@ -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 diff --git a/go.mod b/go.mod index 92ff6054..5cefed3c 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/aykevl/go-bluetooth +module github.com/tinygo-org/bluetooth go 1.14