Foscam HD Camera Device Type

Yep, that is the case. I have the same one. The device type can be easily modified to do that. Here are the instructions (it was based off @jody.albritton’s code in that thread)

You would modfy this section in @justinlhudson’s code

def alarmOn() {
 // //log.debug "Enabling Alarm"
    sendEvent(name: "alarmStatus", value: "on");
    if(hdcamera == "true") {
    hubGet("cmd=setMotionDetectConfig&isEnable=1")
    }
    else {
      hubGet("/set_alarm.cgi?motion_armed=1&")
    }
}