diff --git a/src/devices/smartthings.ts b/src/devices/smartthings.ts index 186b0656b65f8..2d8c9c413fb7a 100644 --- a/src/devices/smartthings.ts +++ b/src/devices/smartthings.ts @@ -308,13 +308,13 @@ const definitions: DefinitionWithExtend[] = [ await endpoint.write('genPollCtrl', {longPollInterval: 3600}); await reporting.temperature(endpoint); await reporting.batteryPercentageRemaining(endpoint); - const payloadA = reporting.payload('acceleration', 10, constants.repInterval.HOUR, 5); + const payloadA = reporting.payload('acceleration', 10, constants.repInterval.MINUTE, 1); await endpoint.configureReporting('manuSpecificSamsungAccelerometer', payloadA, options); - const payloadX = reporting.payload('x_axis', 10, constants.repInterval.HOUR, 5); + const payloadX = reporting.payload('x_axis', 10, constants.repInterval.MINUTE, 1); await endpoint.configureReporting('manuSpecificSamsungAccelerometer', payloadX, options); - const payloadY = reporting.payload('y_axis', 10, constants.repInterval.HOUR, 5); + const payloadY = reporting.payload('y_axis', 10, constants.repInterval.MINUTE, 1); await endpoint.configureReporting('manuSpecificSamsungAccelerometer', payloadY, options); - const payloadZ = reporting.payload('z_axis', 10, constants.repInterval.HOUR, 5); + const payloadZ = reporting.payload('z_axis', 10, constants.repInterval.MINUTE, 1); await endpoint.configureReporting('manuSpecificSamsungAccelerometer', payloadZ, options); }, exposes: [e.temperature(), e.contact(), e.battery_low(), e.tamper(), e.battery(), e.moving(), e.x_axis(), e.y_axis(), e.z_axis()],