Skip to content

Commit

Permalink
fix result
Browse files Browse the repository at this point in the history
  • Loading branch information
niwaniwa committed Jun 12, 2024
1 parent ec4d925 commit 48b11d0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
- Fixed usb inaccessibility issue when using docker.[`#48`](https://github.com/niwaniwa/Sakura-Pi-Node/issues/48)
- Fixed interval time. [`#59`](https://github.com/niwaniwa/Sakura-Pi-Node/issues/59)
- Fixed servo result. [`#61`](https://github.com/niwaniwa/Sakura-Pi-Node/issues/61)

### Removed

Expand Down
4 changes: 2 additions & 2 deletions pkg/usecase/DoorController.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,6 @@ func KeyControl(key entity.KeyState) {
} else {
go adapter.CloseKey(done)
}
<-done
log.Println("Key process ", done)
result := <-done
log.Println("Key process ", result)
}

0 comments on commit 48b11d0

Please sign in to comment.