VitoKit
? Welcome to VitoKit..
A framework that enhances HealthKit and the Fitbit API for iOS
✅ Features
- Wonderfully crafted animations
- Speedy setup and computations
- More efficient and powerful way to build health apps
? Getting Started
let package = Package(
dependencies: [
.package(url: "[email protected]:Vito-Research/VitoKit.git", from: "0.0.0")
]
)
import VitoKit
Request Permission
Depending on which category of health data you would like to query, within toggle data, add your requested category…
Vitals – heart rate, respiration rate, heart rate variability
Activity – steps, stand hours, workouts
Mobility – double support time, walking asymmetry, step length
DataTypesListView(toggleData: [.vitals], title: "Health Data", caption: "Why we need this data...")
Data Querying
VitoKit has various ways to query and process health data…
State Machine
A level based algorithm that detects outliers
let vito = Vito()
vito.populateWithTrends(for: .Vitals, with: Date().addingTimeInterval(.month * 24), to: Date(), filterToActivity: .active)
Machine Learning
TBD
Deep Learning
TBD