if (sys_info != null || sys_info != new object { })
{
string model = (string)sys_info.model;
if (model.StartsWith("HS110"))
device = new TPLinkSmartMeterPlug(ip.Address.ToString());
else if (model.StartsWith("HS"))
device = new TPLinkSmartPlug(ip.Address.ToString());
else if (model.StartsWith("LB"))
device = new TPLinkSmartBulb(ip.Address.ToString());
if (device != null)
DiscoveredDevices.Add(device);
}
because i keep getting an empty object.
is this normal? freshly set up plug.
at https://github.com/anthturner/TPLinkSmartDevices/blob/master/TPLinkSmartDevices/TPLinkDiscovery.cs#L64
i had to
because i keep getting an empty object.
is this normal? freshly set up plug.
thanks