Skip to content

Commit

Permalink
Renamed EchoGoSDK -> EchoGo
Browse files Browse the repository at this point in the history
  • Loading branch information
Binozo committed Sep 8, 2024
1 parent 90e5a63 commit f1f7f98
Show file tree
Hide file tree
Showing 11 changed files with 22 additions and 22 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ This example app will boot your echo and run some example code. Take a look here
## Go Quickstart
### Install the package
```shell
$ go get -u github.com/Binozo/EchoGoSDK
$ go get -u github.com/Binozo/EchoGo
```

### [NATIVE] Example code
Expand All @@ -190,9 +190,9 @@ package examples
import (
"bytes"
"fmt"
"github.com/Binozo/EchoGoSDK/pkg/bindings/buttons"
"github.com/Binozo/EchoGoSDK/pkg/bindings/led"
"github.com/Binozo/EchoGoSDK/pkg/bindings/mic"
"github.com/Binozo/EchoGo/pkg/bindings/buttons"
"github.com/Binozo/EchoGo/pkg/bindings/led"
"github.com/Binozo/EchoGo/pkg/bindings/mic"
"time"
)

Expand Down
2 changes: 1 addition & 1 deletion cmd/host.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"errors"
"github.com/Binozo/EchoGoSDK/pkg/client/echohost"
"github.com/Binozo/EchoGo/pkg/client/echohost"
"log"
"os"
)
Expand Down
10 changes: 5 additions & 5 deletions cmd/server.go
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package main

import (
"github.com/Binozo/EchoGoSDK/internal/server"
"github.com/Binozo/EchoGoSDK/pkg/bindings/buttons"
"github.com/Binozo/EchoGoSDK/pkg/bindings/led"
"github.com/Binozo/EchoGoSDK/pkg/bindings/mic"
"github.com/Binozo/EchoGoSDK/pkg/constants"
"github.com/Binozo/EchoGo/internal/server"
"github.com/Binozo/EchoGo/pkg/bindings/buttons"
"github.com/Binozo/EchoGo/pkg/bindings/led"
"github.com/Binozo/EchoGo/pkg/bindings/mic"
"github.com/Binozo/EchoGo/pkg/constants"
"log"
)

Expand Down
4 changes: 2 additions & 2 deletions internal/server/buttons.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package server

import (
"github.com/Binozo/EchoGoSDK/internal/payloads"
"github.com/Binozo/EchoGoSDK/pkg/bindings/buttons"
"github.com/Binozo/EchoGo/internal/payloads"
"github.com/Binozo/EchoGo/pkg/bindings/buttons"
"log"
"net/http"
)
Expand Down
4 changes: 2 additions & 2 deletions internal/server/led.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package server

import (
"github.com/Binozo/EchoGoSDK/internal/payloads"
"github.com/Binozo/EchoGoSDK/pkg/bindings/led"
"github.com/Binozo/EchoGo/internal/payloads"
"github.com/Binozo/EchoGo/pkg/bindings/led"
"github.com/gorilla/websocket"
"log"
"net/http"
Expand Down
2 changes: 1 addition & 1 deletion internal/server/mic.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package server

import (
"github.com/Binozo/EchoGoSDK/pkg/bindings/mic"
"github.com/Binozo/EchoGo/pkg/bindings/mic"
"github.com/gorilla/websocket"
"log"
"net/http"
Expand Down
2 changes: 1 addition & 1 deletion internal/server/router.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package server

import (
"fmt"
"github.com/Binozo/EchoGoSDK/pkg/constants"
"github.com/Binozo/EchoGo/pkg/constants"
"github.com/gorilla/mux"
"github.com/gorilla/websocket"
"net/http"
Expand Down
2 changes: 1 addition & 1 deletion internal/server/speaker.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package server

import (
"github.com/Binozo/EchoGoSDK/pkg/bindings/speaker"
"github.com/Binozo/EchoGo/pkg/bindings/speaker"
"github.com/gorilla/websocket"
"log"
"net/http"
Expand Down
2 changes: 1 addition & 1 deletion pkg/bindings/led/config.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package led

import "github.com/Binozo/EchoGoSDK/pkg/constants"
import "github.com/Binozo/EchoGo/pkg/constants"

var leds []Led

Expand Down
2 changes: 1 addition & 1 deletion pkg/bindings/led/utils.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package led

import "github.com/Binozo/EchoGoSDK/pkg/constants"
import "github.com/Binozo/EchoGo/pkg/constants"

// Clear all LEDs and turn them off
func Clear() error {
Expand Down
6 changes: 3 additions & 3 deletions pkg/client/echohost/alexa.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ package echohost

import (
"errors"
"github.com/Binozo/EchoGoSDK/internal/mtk"
"github.com/Binozo/EchoGoSDK/internal/wsbindings"
"github.com/Binozo/EchoGoSDK/pkg/constants"
"github.com/Binozo/EchoGo/internal/mtk"
"github.com/Binozo/EchoGo/internal/wsbindings"
"github.com/Binozo/EchoGo/pkg/constants"
"github.com/electricbubble/gadb"
"log"
"os"
Expand Down

0 comments on commit f1f7f98

Please # to comment.