Skip to content

Commit

Permalink
Move to github.com/tinygo-org/bluetooth
Browse files Browse the repository at this point in the history
  • Loading branch information
aykevl committed May 31, 2020
1 parent f91f73e commit 518debb
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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:

Expand Down
2 changes: 1 addition & 1 deletion adapter_windows.go
Original file line number Diff line number Diff line change
@@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion examples/advertisement/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"time"

"github.com/aykevl/go-bluetooth"
"github.com/tinygo-org/bluetooth"
)

// flags + local name
Expand Down
2 changes: 1 addition & 1 deletion examples/heartrate/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"time"

"github.com/aykevl/go-bluetooth"
"github.com/tinygo-org/bluetooth"
)

// flags + local name
Expand Down
2 changes: 1 addition & 1 deletion examples/ledcolor/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"machine"
"time"

"github.com/aykevl/go-bluetooth"
"github.com/tinygo-org/bluetooth"
)

// flags + local name
Expand Down
2 changes: 1 addition & 1 deletion examples/scanner/main.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"github.com/aykevl/go-bluetooth"
"github.com/tinygo-org/bluetooth"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion gap_windows.go
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/aykevl/go-bluetooth
module github.com/tinygo-org/bluetooth

go 1.14

Expand Down

0 comments on commit 518debb

Please sign in to comment.