infinitime/README.md

55 lines
1.1 KiB
Markdown
Raw Permalink Normal View History

2021-08-20 00:41:09 +00:00
# InfiniTime
This is a go library for interfacing with InfiniTime firmware
over BLE on Linux.
2021-08-20 00:59:38 +00:00
[![Go Reference](https://pkg.go.dev/badge/go.arsenm.dev/infinitime.svg)](https://pkg.go.dev/go.arsenm.dev/infinitime)
2021-08-20 00:41:09 +00:00
---
2021-08-20 01:04:23 +00:00
### Importing
This library's import path is `go.arsenm.dev/infinitime`.
---
2021-08-20 00:41:09 +00:00
### Dependencies
2021-11-25 00:51:42 +00:00
This library requires `dbus`, `bluez`, and `pactl` to function. These allow the library to use bluetooth, control media, control volume, etc.
2021-08-20 00:41:09 +00:00
#### Arch
```shell
sudo pacman -S dbus bluez libpulse --needed
2021-08-20 00:41:09 +00:00
```
#### Debian/Ubuntu
```shell
sudo apt install dbus bluez pulseaudio-utils
2021-08-20 00:41:09 +00:00
```
#### Fedora
```shell
sudo dnf install dbus bluez pulseaudio-utils
2021-08-20 00:41:09 +00:00
```
---
### Features
This library currently supports the following features:
- Notifications
- Heart rate monitoring
- Setting time
- Battery level
- Music control
- OTA firmware upgrades
---
### Mentions
The DFU process used in this library was created with the help of [siglo](https://github.com/alexr4535/siglo)'s source code. Specifically, this file: [ble_dfu.py](https://github.com/alexr4535/siglo/blob/main/src/ble_dfu.py)