https://github.com/flocsy/VibraTest
vibration and tone tester for Garmin developers
https://github.com/flocsy/VibraTest
Last synced: 3 months ago
JSON representation
vibration and tone tester for Garmin developers
- Host: GitHub
- URL: https://github.com/flocsy/VibraTest
- Owner: flocsy
- License: gpl-3.0
- Created: 2023-03-10T04:26:04.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-25T08:11:58.000Z (about 1 year ago)
- Last Synced: 2025-02-01T10:13:20.510Z (3 months ago)
- Language: Monkey C
- Size: 462 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-garmin - VibraTest
- awesome-garmin - VibraTest
README
# Vibe & Tone Profile Editor
## Usage
This app is for CIQ developers: edit and try how the VibeProfile feels like and how the ToneProfile and the built-in tones sound like.
1. Open VibraTest app on the watch
2. Open the settings in ConnectIQ app
3. Edit the vibe profile, tone profile
4. Save and hear the tone, and feel the vibration on the watch## Toybox.Attention.VibeProfile
You can enter your own VibeProfile:
Vibe Profile: "25,2000;50,2000;100,2000" is equivalent to:
var vibeData = [
new Attention.VibeProfile(25, 2000),
new Attention.VibeProfile(50, 2000),
new Attention.VibeProfile(100, 2000)
];## Toybox.Attention.ToneProfile and Toybox.Attention.Tone
You can test both the built in tones: TONE_START, ... and create your own ToneProfile:
Tone Profile: "2500,250;5000,250" is equivalent to:
var toneProfile = [
new Attention.ToneProfile(2500, 250),
new Attention.ToneProfile(5000, 250)
];# Changelog
5 (2024-03-25) add fr165, fix vibration detection
4 (2024-02-19) only display settings that are relevant to the device
3 (2024-02-19) fix crash when device doesn't support ToneProfile
2 (2024-02-13) add new devices
1 (2023-03-10) initial version