Mr. Black

Results 5 comments of Mr. Black

Is it possible set multiple pins for multiple led strips? I was trying change pins after create a sm object. ```js this.sm.setPins(1 | 2) ``` did not produce results.

```js this.sm.setPins(1 | 2, 1 | 2 ) ``` Not working 🥺

strip.js ```js const { PIO, ASM, StateMachine } = require('rp2') const clamp = (value, min, max) => Math.min(Math.max(value, min), max) class Strip { constructor(option) { this.pin = option.pin this.num =...

I had to use a multiplexer, but I would like to know if it is possible to change the pin after create a StateMachine ![photo_2024-02-23_09-43-27](https://github.com/kaluma-project/kaluma/assets/39556120/3ac3fcae-7a54-4447-8521-386885e10e05)

Is it possible use display from esp32c3?