tobozo
tobozo
You can get it from [this blog page](http://www.buildlog.net/blog/2018/02/game-audio-for-the-esp32/)
thanks for the quick reply! > Easy one Pin25 is in the way and disabling the status led in the code would probably not free that channel as pin25 is...
followup: - Asked a friend familiar with rust for help - Stopped using the text-editor+shell and started using vscode+rust-analyzer - Found the [sikgrok OLS API source](https://sigrok.org/api/libsigrok/0.1.0/hardware_2openbench-logic-sniffer_2ols_8c_source.html) to use as a...
Salutations @m1cr0lab thanks for your feedback, I'm happy my work inspired you :-) > dpc[channel - 1]++; could it mean the whole channels list is off by one? this app...
hi, it will not try to fetch files from the network if a `/gif` folder exist on the sd card and contains gif files ```cpp totalFiles = getGifInventory( "/gif" );...
yes you need to adjust parts in the code, probably uncomment `//#define LGFX_ONLY` to expose the display config and edit the pins in the setup: https://github.com/tobozo/ESP32-GifPlayer/blob/master/ESP32-GifPlayer.ino#L337
> and where are these named? > > p->spi_cs = TFT_CS; // 14 > p->spi_dc = TFT_DC; // 27 > p->gpio_rst = TFT_RST; // 33 > p->gpio_bl = TFT_LED; //...
from the vendor database: idVendor 0x081f idProduct 0xe401 Generic Controllers / SNES USB Controller MaxPower 500mA from the init: cfg.bMaxPower = 250 could it mean the ESP cannot provide 500mA...
hi, what board did you select in the arduino ide tools menu? if you know what esp32 pin is connected to the builtin led, you can specify it before including...
> If I go to define BLINK_GPIO and LED_BUILTIN BLINK_GPIO is internal to esp32-usb-soft-host, if you define that one before including the library, don't define LED_BUILTIN do you have an...