Lorenz Nimmervoll

Results 20 comments of Lorenz Nimmervoll

A workaround would be to implement a function that can be started from the regular UI that stops the webserver and starts a second webserver that only creates the necessary...

Use the `x-enumNames` property. ```json { "enum": ["&&", "||"], "x-enumNames": ["AND", "OR"], "type": "string" } ``` compiles to ```ts export enum RuleChainingOperator { AND = '&&', OR = '||', }...

Sure, will do that tommorow 👍🏻

Ok, after some time digging I couldn't find the issue. Changing `jsonc/sort-keys` had no effect on the autofix. Setting `caseSensitive: true` removes the error, but it is sorted sensitive.

Yeah, we already fixed that issue but we haven't drafted a new release yet. Please download the newest version of the `in-development` branch [here](https://github.com/NimmLor/esp8266-fastled-iot-webserver/tree/in-development).

You have probably forgot to enable `#define ENABLE_UDP_VISUALIZATION `, it was moved down there because the majority isn't using this feature.

Lambdas Node.js 18 runtime ships with sdk v3, would be nice if this would be merged soon https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html

Hi! This project was updated and merge with my other led software. Please install the new software, it functions the same and has more features and fixes: https://github.com/NimmLor/esp8266-fastled-iot-webserver For the...

A workaround would be to use the `x-enumNames` property in your openapi spec to overwrite the enum keys. You might want to use the [transformer](https://orval.dev/reference/configuration/input#transformer) feature to add this to...