Are there any wireless network cameras that have http control for pan and tilt?

My D-Link DCS 5220 Wireles P&T IP Cameras are 100% controlable via http.

I even have events that I use as buttons in HS to allow me to control them (I happend to have my cheat sheet handy, so I pasted the commands here):

Code:
hs.GetURL("user:password@ipaddress","/cgi-bin/camctrl.cgi?move=home",TRUE,PORT)
hs.GetURL("user:password@ipaddress","/cgi-bin/camctrl.cgi?move=right",TRUE,PORT)
hs.GetURL("user:password@ipaddress","/cgi-bin/camctrl.cgi?move=left",TRUE,PORT)
hs.GetURL("user:password@ipaddress","/cgi-bin/camctrl.cgi?move=up",TRUE,PORT)
hs.GetURL("user:password@ipaddress","/cgi-bin/camctrl.cgi?move=down",TRUE,PORT)
hs.GetURL("user:password@ipaddress","/cgi-bin/camctrl.cgi?auto=stop",TRUE,PORT)
hs.GetURL("user:password@ipaddress","/cgi-bin/recall.cgi?recall=Home",TRUE,PORT)
hs.GetURL("user:password@ipaddress","/cgi-bin/recall.cgi?recall=Hall",TRUE,PORT)
hs.GetURL("user:password@ipaddress","/cgi-bin/recall.cgi?recall=Dining",TRUE,PORT)
hs.GetURL("user:password@ipaddress","/cgi-bin/recall.cgi?recall=Island",TRUE,PORT)
hs.GetURL("user:password@ipaddress","/cgi-bin/recall.cgi?recall=Stove",TRUE,PORT)
hs.GetURL("user:password@ipaddress","/cgi-bin/recall.cgi?recall=Main",TRUE,PORT)

Basically, though, it's just
Code:
http://ipaddress:port/cgi-bin/camctrl.cgi?move=direction
for directional movement and
Code:
http://ipaddress:port/cgi-bin/recall.cgi?recall=presetname
for presets.
 
Back
Top