-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
14e748a
commit 62ad79f
Showing
17 changed files
with
92 additions
and
104 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
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
18 changes: 0 additions & 18 deletions
18
...e-java-app/src/test/java/com/example/tiediesampleapp/TiedieSampleAppApplicationTests.java
This file was deleted.
Oops, something went wrong.
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
9 changes: 9 additions & 0 deletions
9
java-sdk/sdk/src/main/java/com/cisco/tiedie/dto/telemetry/BleAdvertisement.java
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package com.cisco.tiedie.dto.telemetry; | ||
|
||
import lombok.Data; | ||
|
||
@Data | ||
public class BleAdvertisement { | ||
String macAddress; | ||
int rssi; | ||
} |
10 changes: 10 additions & 0 deletions
10
java-sdk/sdk/src/main/java/com/cisco/tiedie/dto/telemetry/BleConnectionStatus.java
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package com.cisco.tiedie.dto.telemetry; | ||
|
||
import lombok.Data; | ||
|
||
@Data | ||
public class BleConnectionStatus { | ||
String macAddress; | ||
boolean connected; | ||
int reason; | ||
} |
9 changes: 9 additions & 0 deletions
9
java-sdk/sdk/src/main/java/com/cisco/tiedie/dto/telemetry/BleSubscription.java
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package com.cisco.tiedie.dto.telemetry; | ||
|
||
import lombok.Data; | ||
|
||
@Data | ||
public class BleSubscription { | ||
String serviceId; | ||
String characteristicId; | ||
} |
16 changes: 16 additions & 0 deletions
16
java-sdk/sdk/src/main/java/com/cisco/tiedie/dto/telemetry/DataSubscription.java
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package com.cisco.tiedie.dto.telemetry; | ||
|
||
import lombok.Data; | ||
|
||
@Data | ||
public class DataSubscription { | ||
byte[] data; | ||
float timestamp; | ||
String deviceId; | ||
String apMacAddress; | ||
BleSubscription BleSubscription; | ||
BleAdvertisement bleAdvertisement; | ||
BleConnectionStatus bleConnectionStatus; | ||
ZigbeeSubscription zigbeeSubscription; | ||
RawPayload rawPayload; | ||
} |
8 changes: 8 additions & 0 deletions
8
java-sdk/sdk/src/main/java/com/cisco/tiedie/dto/telemetry/RawPayload.java
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package com.cisco.tiedie.dto.telemetry; | ||
|
||
import lombok.Data; | ||
|
||
@Data | ||
public class RawPayload { | ||
String contextId; | ||
} |
11 changes: 11 additions & 0 deletions
11
java-sdk/sdk/src/main/java/com/cisco/tiedie/dto/telemetry/ZigbeeSubscription.java
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package com.cisco.tiedie.dto.telemetry; | ||
|
||
import lombok.Data; | ||
|
||
@Data | ||
public class ZigbeeSubscription { | ||
int endpointId; | ||
int clusterId; | ||
int attributeId; | ||
int attributeType; | ||
} |
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 was deleted.
Oops, something went wrong.
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