David Kerr

Results 73 comments of David Kerr

> Ubuntu 20.04 64-bit. Thanks, I have one of those in a VM I can use.

> > I agree... but FYI, the only way I got the command line curl accepted into the code was to also implement the module version. I really needed the...

> > All the history is in #233, you'll see it was quite a journey to get curl support added, Personally I would remove the WWW::Curl::Easy code, but it is...

> Having support for no-uip.com would be great :) Cannot find no-uip.com. Did you mean https://noip.com ?

PR #291 opened with the framework for supporting IPv6

@thburghout I will take a look at this when I have a chance.

@thburghout I am not able to reproduce your problem. I have tested on two networks... one which has lots of devices, and another that has none, but has avahi reflect...

Suggest you model after the Homebridge documentation for [lightbulb](https://developers.homebridge.io/#/service/Lightbulb). ``` // create handlers for required characteristics this.service.getCharacteristic(this.Characteristic.On) .onGet(this.handleOnGet.bind(this)) .onSet(this.handleOnSet.bind(this)); ``` In the set handler I would not update it to...

You can do the get/set handler functions in-line if you don't want to create separate function. Like... ``` .onGet( () => { return(whatever); }) .onSet( (value: CharacteristicValue) => { return;...