Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mzakharo/smartbow
Pair a smartphone to a bow
https://github.com/mzakharo/smartbow
archery bow conda digital-wellbeing influxdb kivy numpy orientation-sensor python python-for-android sensors
Last synced: about 1 month ago
JSON representation
Pair a smartphone to a bow
- Host: GitHub
- URL: https://github.com/mzakharo/smartbow
- Owner: mzakharo
- License: other
- Created: 2020-11-01T21:27:58.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-04-13T14:13:02.000Z (over 3 years ago)
- Last Synced: 2023-10-20T21:57:51.547Z (about 1 year ago)
- Topics: archery, bow, conda, digital-wellbeing, influxdb, kivy, numpy, orientation-sensor, python, python-for-android, sensors
- Language: Python
- Homepage:
- Size: 26.5 MB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
![APK build using buildozer](https://github.com/mzakharo/smartbow/workflows/APK%20build%20using%20buildozer/badge.svg)
# Project description
* Augment your bow with cybertech from your smartphone
* Count arrows shot
* Orientation view for stability/consistency analsysis* Developed and tested with Galaxy S10
* [Bow Phone Mount](https://www.amazon.ca/Smartphone-Camera-Phone-IPhone-Samsung/dp/B00BVF6V5Q)## Installation
- Method 1 : [Play Store](https://play.google.com/store/apps/details?id=org.org.smartbow)
- Method 2 : Download and install the latest APK from the Artifacts of the [Actions section](https://github.com/mzakharo/smartbow/actions)## InfluxDB setup (Optional)
* Upload raw orientation/accelerometer data for each shot into your private InfluxDB instance, for offline analsys/data science
![InfluxDB](/extra/influx.png?raw=true "Orientation")
* You can obtain a free [InfluxDB account](https://cloud2.influxdata.com/signup)
* Edit and add a [smartbow_config.json](/smartbow_config.json) to the root of the internal storage (`/sdcard`)# APK Build instructions
Tested on Ubuntu 20.04.
## Add to .bashrc
```export PATH=$HOME/.local/bin/:$HOME/.buildozer/android/platform/android-sdk/platform-tools/:$PATH```## Prep for buildozer
```
# from https://buildozer.readthedocs.io/en/latest/installation.html#android-on-ubuntu-20-04-64bit
sudo apt install -y git zip unzip openjdk-8-jdk python3-pip autoconf libtool pkg-config zlib1g-dev libncurses5-dev libncursesw5-dev libtinfo5 cmake libffi-dev libssl-dev
sudo apt install ccache
```## Setup native runtime environment
Download and install [conda](https://docs.conda.io/en/latest/miniconda.html)
```
conda install -c conda-forge kivy
conda install cython numpy
pip install -r requirements.txt
```## run the app on the desktop
```python main.py```## build the mobile .apk
```make```
## install the .apk
```make install```## log
```./logcat.sh```## Linux adb permissions
```
lsusb to get vendor/product
cp 51-android.rules /etc/udev/rules.d/
sudo udevadm control --reload-rules
```