@Override
void executeRefresh(ZWaveNode node,
ZWaveThermostatSetpointCommandClass commandClass, int endpointId,
Map<String, String> arguments) {
logger.debug("NODE {}: Generating poll message for {}, endpoint {}", node.getNodeId(), commandClass.getCommandClass().getLabel(), endpointId);
SerialMessage serialMessage;
String setpointType = arguments.get("setpoint_type");
if (setpointType != null) {
serialMessage = node.encapsulate(commandClass.getMessage(SetpointType.getSetpointType(Integer.parseInt(setpointType))), commandClass, endpointId);
} else {