Jérôme W.

Results 269 comments of Jérôme W.

As far as I know this module only works by connecting it to the board of your printer In my case, the jam sensor has to act like a switch...

Just a basic switch: https://www.amazon.fr/gp/product/B07912Q45W/ref=ppx_yo_dt_b_asin_title_o00_s00?ie=UTF8&psc=1

Juste rename `detail` to `detaill` ```cpp namespace detaill { template constexpr size_t ARRAY_SIZE2_ARGUMENT_CANNOT_BE_POINTER(T const (&)[N]) noexcept { return N; } } // namespace detaill #define ARRAY_SIZE2(arr) detaill::ARRAY_SIZE2_ARGUMENT_CANNOT_BE_POINTER(arr) ```

Thanks, I'll integrate this into the documentation!

@EliSchleifer, would you mind sharing a gif of the result please?

That's amazing, thanks a lot 👍 ! I'll add this to the documentation page ! I'll keep the issue open as a reminder !

You can do that in supported browser: `background-color: color-mix(in srgb, var(--sidebar-selected-icon-color) 50%, transparent)` (50% is the transparency here)

@redfusion83, it should be: ```yaml tap_action: action: call-service service: mqtt.publish service_data: topic: command payload: [[[ return `{"CMD":0, "VALUE": ${states["sensor.target_temp_c"].state+1}, "XTIME": 0, "INTERVAL": 0}`; ]]] ```

The state **value** is not localized in French, it's just displayed in French,you can check that in the developer tools. So it should be indexOf("cloudy").

Try this instead of returning the result directly: ```js return `${valeur}`; ```