Dopeyr
Dopeyr
Thank you, that's appreciated.
>Oh, and I think you can state, by definition, that you are always on your own track(s). 😄
I believe this is normal for this custom firmware, as it executes `/system/sdcard/bin/mosquitto_pub.bin` for every change. Normally in MQTT there is a client daemon running which keeps the connection open,...
Looks like the bulk of the status reporting is in `/system/sdcard/scripts/mqtt-status-interval.sh` I'm wondering if anything can be done with the `mosquitto_pub.bin` `-l` option, which will read from stdin. If stdin...
Actually, forget that, it has a big issue. You can only set the topic when launching mosquitto_pub and can't change it per message received on stdin. There are currently 15...
I'm wondering if a tool like https://github.com/bsorrentino/java2typescript would be useful here.
This might be solvable with Typescript 5.5, ref: https://github.com/microsoft/TypeScript/issues/22160 Adding ``` /** * @import { Item } from './items/items' */ ``` to `triggers.js` no longer adds the export of the...
I think it solves one issue with the autosuggest, and introduces another. Currently `Item` is suggested from multiple files (note it includes triggers as it's exported there)  After TS...