-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from ruuvi/dev
Dev
- Loading branch information
Showing
11 changed files
with
205 additions
and
161 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 17 additions & 17 deletions
34
bluetooth_library/src/main/java/com/ruuvi/station/bluetooth/FoundRuuviTag.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
package com.ruuvi.station.bluetooth | ||
|
||
class FoundRuuviTag { | ||
var id: String? = null | ||
var url: String? = null | ||
var rssi: Int? = null | ||
var temperature: Double? = null | ||
var humidity: Double? = null | ||
var pressure: Double? = null | ||
var accelX: Double? = null | ||
var accelY: Double? = null | ||
var accelZ: Double? = null | ||
var voltage: Double? = null | ||
var dataFormat: Int? = null | ||
var txPower: Double? = null | ||
var movementCounter: Int? = null | ||
var measurementSequenceNumber: Int? = null | ||
var connectable: Boolean? = null | ||
} | ||
data class FoundRuuviTag ( | ||
var id: String? = null, | ||
var url: String? = null, | ||
var rssi: Int? = null, | ||
var temperature: Double? = null, | ||
var humidity: Double? = null, | ||
var pressure: Double? = null, | ||
var accelX: Double? = null, | ||
var accelY: Double? = null, | ||
var accelZ: Double? = null, | ||
var voltage: Double? = null, | ||
var dataFormat: Int? = null, | ||
var txPower: Double? = null, | ||
var movementCounter: Int? = null, | ||
var measurementSequenceNumber: Int? = null, | ||
var connectable: Boolean? = null, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
#Fri Nov 19 01:22:33 MSK 2021 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.9.1-bin.zip | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists | ||
zipStoreBase=GRADLE_USER_HOME |
Oops, something went wrong.