The screen sensor monitors the screen statuses, such as turning on and off, locked and unlocked.
iOS 13 or later
You can integrate this framework into your project via Swift Package Manager (SwiftPM) or CocoaPods.
-
Open Package Manager Windows
- Open
Xcode-> SelectMenu Bar->File->App Package Dependencies...
- Open
-
Find the package using the manager
- Select
Search Package URLand typegit@github.com:awareframework/com.awareframework.ios.sensor.screen.git
- Select
-
Import the package into your target.
com.awareframework.ios.sensor.wifi is available through CocoaPods.
- To install it, simply add the following line to your Podfile:
pod 'com.awareframework.ios.sensor.screen'- Import com.awareframework.ios.sensor.screen library into your source code.
import com_awareframework_ios_sensor_screeninit(config:ScreenSensor.Config?): Initializes the screen sensor with the optional configuration.start(): Starts the gyroscope sensor with the optional configuration.stop(): Stops the service.
Class to hold the configuration of the sensor.
sensorObserver: ScreenObserver: Callback for live data updates.enabled: BooleanSensor is enabled or not. (default =false)debug: Booleanenable/disable logging toLogcat. (default =false)label: StringLabel for the data. (default = "")deviceId: StringId of the device that will be associated with the events and the sensor. (default = "")dbEncryptionKeyEncryption key for the database. (default =null)dbType: EngineWhich db engine to use for saving data. (default =Engine.DatabaseType.NONE)dbPath: StringPath of the database. (default = "aware_screen")dbHost: StringHost for syncing the database. (default =null)
ScreenSensor.ACTION_AWARE_SCREEN_ONfired when the screen is on.ScreenSensor.ACTION_AWARE_SCREEN_OFFfired when the screen is off.ScreenSensor.ACTION_AWARE_SCREEN_LOCKEDfired when the screen is locked.ScreenSensor.ACTION_AWARE_SCREEN_UNLOCKEDfired when the screen is unlocked.
Contains the screen profiles.
| Field | Type | Description |
|---|---|---|
| screenStatus | Int | screen status, one of the following: 0=off, 1=on, 2=locked, 3=unlocked |
| deviceId | String | AWARE device UUID |
| label | String | Customizable label. Useful for data calibration or traceability |
| timestamp | Long | Unixtime milliseconds since 1970 |
| timezone | Int | Timezone of the device |
| os | String | Operating system of the device (e.g., ios) |
var screenSensor = ScreenSensor.init(ScreenSensor.Config().apply{config in
config.sensorObserver = Observer()
config.debug = true
config.dbType = .REALM
})
screenSensor?.start()class Observer:ScreenObserver{
func onScreenOn() {
// Your code here ...
}
func onScreenOff() {
// Your code here ...
}
func onScreenLocked() {
// Your code here ...
}
func onScreenUnlocked() {
// Your code here ...
}
}Yuuki Nishiyama (The University of Tokyo), nishiyama@csis.u-tokyo.ac.jp
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.