skadisch

Results 8 issues of skadisch

Currently only sockaddr_in or sockaddr_in6 may be passed when sending UDP packets. Up until now based on the address family (AF_INET or AF_INET6) the length parameter was determined and therefore...

Currently there are no version tags in the repository. Also, a package.json file is not included here, although npm refers to this Github repository. Is this currently manually managed or...

Currently requests are packed and pushed into a Node.js Socket `stream.Writable`. This works as long as - the amount of data generated is low, - there is enough idle time...

GPIO IRQs registered via "gpio.irq(callback[, event])" are executed as they arrive, interrupting the currently running program. Normally, JavaScript environments are of cooperative nature and schedule events in the event loop...

Part 1: It seems that some DPT parsing is implemented in remote values (e.g. [DPT 251.600](https://github.com/XKNX/xknx/blob/92b80c22827b5d5725d2f00118a40727b06dd187/xknx/remote_value/remote_value_color_rgbw.py#L49)). This makes these DPTs unavailable for generic transcoding via [transcoder_by_dpt](https://github.com/XKNX/xknx/blob/92b80c22827b5d5725d2f00118a40727b06dd187/xknx/dpt/dpt.py#L135) or [transcode_by_value_type](https://github.com/XKNX/xknx/blob/92b80c22827b5d5725d2f00118a40727b06dd187/xknx/dpt/dpt.py#L146). Is there...

💡 feature request

Fixes #162 According to man 2 read: > On success, the number of bytes read is returned (zero indicates end of file)... According to [node fs](https://nodejs.org/api/fs.html#fsreadfd-buffer-offset-length-position-callback): > If the file...

Fixes #13 Ideally GetTransport should return only a `Duplex`, not a `Promise`. If needed, the Duplex could be delayed by a custom Duplex implementation. This is a quick-fix without API...

In certain situations, when there are connection problems, this library causes unhandled error events to be emitted. This causes uncaught exception behavior in Node and normally crashes the process. The...