├── .github └── workflows │ └── go.yml ├── .gitignore ├── LICENSE ├── README.md ├── Taskfile.yml ├── cmd ├── mebeats-client │ └── main.go └── mebeats-server │ ├── assets │ ├── PressStart2P-Regular.ttf │ └── heart.png │ └── main.go ├── cryptoutil └── aes.go ├── go.mod ├── go.sum ├── miband ├── battery.go ├── heart_rate.go ├── miband.go ├── notification.go └── state.go └── report └── report.go /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuhan005/mebeats/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuhan005/mebeats/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuhan005/mebeats/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuhan005/mebeats/HEAD/README.md -------------------------------------------------------------------------------- /Taskfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuhan005/mebeats/HEAD/Taskfile.yml -------------------------------------------------------------------------------- /cmd/mebeats-client/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuhan005/mebeats/HEAD/cmd/mebeats-client/main.go -------------------------------------------------------------------------------- /cmd/mebeats-server/assets/PressStart2P-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuhan005/mebeats/HEAD/cmd/mebeats-server/assets/PressStart2P-Regular.ttf -------------------------------------------------------------------------------- /cmd/mebeats-server/assets/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuhan005/mebeats/HEAD/cmd/mebeats-server/assets/heart.png -------------------------------------------------------------------------------- /cmd/mebeats-server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuhan005/mebeats/HEAD/cmd/mebeats-server/main.go -------------------------------------------------------------------------------- /cryptoutil/aes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuhan005/mebeats/HEAD/cryptoutil/aes.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuhan005/mebeats/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuhan005/mebeats/HEAD/go.sum -------------------------------------------------------------------------------- /miband/battery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuhan005/mebeats/HEAD/miband/battery.go -------------------------------------------------------------------------------- /miband/heart_rate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuhan005/mebeats/HEAD/miband/heart_rate.go -------------------------------------------------------------------------------- /miband/miband.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuhan005/mebeats/HEAD/miband/miband.go -------------------------------------------------------------------------------- /miband/notification.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuhan005/mebeats/HEAD/miband/notification.go -------------------------------------------------------------------------------- /miband/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuhan005/mebeats/HEAD/miband/state.go -------------------------------------------------------------------------------- /report/report.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuhan005/mebeats/HEAD/report/report.go --------------------------------------------------------------------------------