Latest | 0.1.0 |
---|---|
Homepage | https://github.com/awareframework/com.aware.ios.sensor.activityrecognition |
License | Apache2 |
Platforms | ios 10.0 |
Dependencies | com.aware.ios.sensor.core |
Frameworks | CoreMotion |
Authors |
Example
To run the example project, clone the repo, and run pod install
from the Example directory first.
Requirements
Installation
com.aware.ios.sensor.activityrecognition is available through CocoaPods.
-
To install it, simply add the following line to your Podfile:
pod 'com.aware.ios.sensor.activityrecognition'
-
com_aware_ios_sensor_activityrecognition library into your source code.
import com_aware_ios_sensor_activityrecognition
- Add a description of
NSMotionUsageDescription
into Info.plist
Example usage
let activitySensor = ActivityRecognitionSensor.init(ActivityRecognitionSensor.Config().apply{config in
config.debug = true
config.interval = 15
config.dbType = .REALM
config.sensorObserver = Observer()
})
activitySensor.start()
class Observer:ActivityRecognitionObserver {
func onActivityChanged(data: Array<ActivityRecognitionData>) {
// Your code here ..
}
}
Author
Yuuki Nishiyama, [email protected]
License
Copyright (c) 2018 AWARE Mobile Context Instrumentation Middleware/Framework (http://www.awareframework.com)
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
Latest podspec
{ "name": "com.aware.ios.sensor.activityrecognition", "version": "0.1.0", "summary": "A short description of com.aware.ios.sensor.activityrecognition.", "description": "TODO: Add long description of the pod here.", "homepage": "https://github.com/awareframework/com.aware.ios.sensor.activityrecognition", "license": { "type": "Apache2", "file": "LICENSE" }, "authors": { "tetujin": "[email protected]" }, "source": { "git": "https://github.com/awareframework/com.aware.ios.sensor.activityrecognition.git", "tag": "0.1.0" }, "platforms": { "ios": "10.0" }, "swift_version": "4.2", "source_files": "com.aware.ios.sensor.activityrecognition/Classes/**/*", "frameworks": "CoreMotion", "dependencies": { "com.aware.ios.sensor.core": [] } }
Wed, 14 Nov 2018 19:00:06 +0000