Gavin-Perry

Results 9 comments of Gavin-Perry

Makes sense to at least get an interrupt at break so you can error gracefully when getting a truncated packet and looking for a higher channel. Was this resolved?

I can't get DMX channel one to be read properly from my Chauvet Light board. IF I use DMXOutput and DMXInput then it works "right?". Or are both off by...

Yes, that is how it is supposed to work according to DMX standard. My question is how the buffer array is done in the library since it isn't working right....

Thanks for your help. As it turns out the pins I used for setting the address (GPIO 26-28) Don't work with digitalRead() or gpio_get() Minimum code gpio_set_dir(26, GPIO_IN); gpio_pull_up(26); gpio_set_dir(27,...

Thanks for the idea. I don't use adc_init, and I explicitly did call gpio_set_dir(i,GPIO_OUT) and then gpio_pull {up or down} The pull worked for setting my defaults. I'd call gpio_set_function()...

I now realize that now. Just flailing at options to figure out the problem with digital input which should be the default. And learning some of the cool things that...

Looks like I need to use gpio_init() because the Arduino boot loader isn't enabling them.

Interesting idea. Let us know if you get time to try it (and it works 😉 ) Just look at falling edges to keep it simpler? BTW, your library worked...

The design looks good. Nice work. I look forward to testing it when it's done. I have an old Chauvet that I think only sends 24 or 48 channels I...