You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: bundles/org.openhab.binding.shelly/src/main/java/org/openhab/binding/shelly/internal/ShellyBindingConstants.java
+1
Original file line number
Diff line number
Diff line change
@@ -104,6 +104,7 @@ public class ShellyBindingConstants {
Copy file name to clipboardexpand all lines: bundles/org.openhab.binding.shelly/src/main/java/org/openhab/binding/shelly/internal/api/ShellyDeviceProfile.java
Copy file name to clipboardexpand all lines: bundles/org.openhab.binding.shelly/src/main/java/org/openhab/binding/shelly/internal/api2/Shelly2ApiJsonDTO.java
+15
Original file line number
Diff line number
Diff line change
@@ -521,11 +521,26 @@ public class Shelly2DeviceConfigWiFi {
521
521
}
522
522
523
523
publicstaticclassShelly2DeviceStatus {
524
+
publicclassShelly2InputCounts {
525
+
publicIntegertotal;
526
+
@SerializedName("by_minute")
527
+
publicDouble[] byMinute;
528
+
publicDoublextotal;
529
+
@SerializedName("xby_minute")
530
+
publicDouble[] xbyMinute;
531
+
@SerializedName("minute_ts")
532
+
publicIntegerminuteTS;
533
+
}
534
+
524
535
publicclassShelly2InputStatus {
525
536
publicIntegerid;
526
537
publicBooleanstate;
527
538
publicDoublepercent; // analog input only
528
539
publicArrayList<String> errors;// shown only if at least one error is present.
Copy file name to clipboardexpand all lines: bundles/org.openhab.binding.shelly/src/main/java/org/openhab/binding/shelly/internal/discovery/ShellyDiscoveryParticipant.java
+4-2
Original file line number
Diff line number
Diff line change
@@ -143,7 +143,8 @@ public DiscoveryResult createResult(final ServiceInfo service) {
Copy file name to clipboardexpand all lines: bundles/org.openhab.binding.shelly/src/main/java/org/openhab/binding/shelly/internal/discovery/ShellyThingCreator.java
+16-1
Original file line number
Diff line number
Diff line change
@@ -40,6 +40,7 @@ public class ShellyThingCreator {
Copy file name to clipboardexpand all lines: bundles/org.openhab.binding.shelly/src/main/java/org/openhab/binding/shelly/internal/handler/ShellyBaseHandler.java
+1-5
Original file line number
Diff line number
Diff line change
@@ -150,7 +150,7 @@ public ShellyBaseHandler(final Thing thing, final ShellyTranslationProvider tran
Copy file name to clipboardexpand all lines: bundles/org.openhab.binding.shelly/src/main/java/org/openhab/binding/shelly/internal/manager/ShellyManagerPage.java
0 commit comments