GetLastRemoteIP
Purpose
Returns the IP address of the last client computer to access the HomeSeer web server, as a string like 192.168.1.1.
Parameters
None
Returns
Return value: IP address
Type: string
Example
Sample Code
VB
sub main()
dim ipaddress
ipaddress = hs.GetLastRemoteIP
hs.WriteLog "Info","The IP Address to last access the system is " & ipaddress
end sub