libDaisy
libDaisy copied to clipboard
Hardware Library for the Daisy Audio Platform
This is a proposal to add an .editorconfig file that can automatically configure code editors to use the recommended settings for this repository. - Add .editorconfig file - Add editorconfig...
see full details: https://github.com/electro-smith/DaisyWiki/issues/33
Reported on the [forum](https://forum.electro-smith.com/t/periodic-digital-clicks-when-reading-file-from-sd-card-on-daisy-seed/2750/); seems like something to do with `Prepare` is causing audio to be held up, and interferes with the callback in general. This was demonstrated by generating...
There was a compiler error in `Max11300Driver::WriteAnalogPinVolts()`. This PR fixes that error and modifies the unit tests to use that function at least once so that an error like this...
This was originally intended to be added when we added parsing, and it must have just gotten glossed over. There are some ideas in [this forum post](https://forum.electro-smith.com/t/how-to-use-libdaisy-for-midi-out/2346/6). Also, as an...
Hi, switching to the SRAM-based boot loader (BOOT_SRAM) appears to break SW_1 and SW_2 on the Daisy Field. Specifically it seems like RisingEdge() is always true. Not sure if this...
Move Visual Studio files to another folder and get the project building again
`off = rawbrightness + on` `on = startcycle = ledindex 4095`. There's an if which sets the fullbrightness flag which I changed to `rawbrightness + on > 4095` rather than...
This patch adds support for averaging the ADC reads to improve the stability. This approach is preferable to the current running-average solution because it is completely internal to the driver...