Compare commits

...

1 Commits

Author SHA1 Message Date
af82794a26 add README.md 2019-11-27 11:55:35 -05:00

24
README.md Normal file
View File

@ -0,0 +1,24 @@
# HRM
An example heart rate monitor app for Android and MacOS using [git.wow.st/gmp/ble](git.wow.st/gmp/ble) and [Gio](gioui.org).
## MacOS:
```
go get git.wow.st/gmp/hrm
cd ~/go/src/git.wow.st/gmp/hrm
go build
./hrm
```
## Android:
The `gogio` command from `gioui.org/cmd/gogio` must be installed to build
an Android APK.
```
go get git.wow.st/gmp/hrm
cd ~/go/src/git.wow.st/gmp/hrm
gogio -target android .
adb install -r hrm.apk
```