See here:
https://community.hubitat.com/t/driver-zooz-zen-switches-advanced-and-dimmers/58649/576?u=jtp10181
You can insert one line of code in that function which should fix it for now.
Anyway, add this line at the top of the function so it looks like this when done:
String setParameter(paramNum, value, size = null) {
paramNum = safeToInt(paramNum)
Map param = getParam(paramNum)
Problem is that it used to come across as an integer already but now it is coming in as a BigDecimal so I have to convert it so it works in the next function being called.
See here:
https://community.hubitat.com/t/driver-zooz-zen-switches-advanced-and-dimmers/58649/576?u=jtp10181
You can insert one line of code in that function which should fix it for now.
Anyway, add this line at the top of the function so it looks like this when done:
Problem is that it used to come across as an integer already but now it is coming in as a BigDecimal so I have to convert it so it works in the next function being called.