Thank you! this is an amazing implementation of Dall-e and IoT. I'm beginning to think of a wide range of artistic project to build on your ideas! This is awesome, great work.
@shumlianskyistanislav3081 Жыл бұрын
Screens are great! Thanks for sharing.
@sergioswiszcz6015 Жыл бұрын
Excellent work! Thanks for sharing.
@LowerDeckProps11 ай бұрын
Excellent work and video. Thanks, Charles.
@thelastoutpostworkshop11 ай бұрын
Glad you enjoyed it
@mikehey570211 күн бұрын
Merci de partager ce sympathique programme et pour le tuto très clair ! fonctionne parfaitement ici avec un ST7789 carré. Michel 🤩(un autre Belge génération Star Wars/Commodore64 ,expat en Espagne)😁
@MyTube4Utoo5 ай бұрын
Very cool! This is very beneficial for someone trying to learn this (me). Thank you for such a detailed video.
@michaelangellotti57418 ай бұрын
Very helpful video. Many thanks.
@garlandsworkshop Жыл бұрын
Absolutely brilliant!!! I can’t wait to carve some time to try to test this out
@thelastoutpostworkshop Жыл бұрын
Please do!
@NA-rh7iy Жыл бұрын
Amazing ! Thanks ! Any free option to generate images ?
@thelastoutpostworkshop Жыл бұрын
I have looked at several options for generating AI images and did not find any that were free, I may have missed a rare gem. The OpenAI DALL-E API is very easy to use, inexpensive, support PNG files with a small size (256x256 pixels is the smallest) that is easy to process on a microcontroller, these meets all my requirements.
@HhCcc-xi3gw5 ай бұрын
Helo i am from vietnam
@virajprithu8834 ай бұрын
Amazing work! I'm working on a project to display via e-paper display (800 X 480). Image is downloaded in base64 format , any suggestions to display it as a hex file which is supported by the e-paper library
@thelastoutpostworkshop4 ай бұрын
Thank You. E-Paper display are very slow, so animated gif will are going to be very slow. You can see this other video where I show how to convert to hex data : kzbin.info/www/bejne/pZ64iJ6LpquMqLM
@medienmond Жыл бұрын
is there a possibility to generate Images on your own Hardware? Like with a Google coral m.2 module?
@thelastoutpostworkshop Жыл бұрын
By own Hardware do you mean a different microcontroller?
@medienmond Жыл бұрын
@@thelastoutpostworkshop nö, i mean a own Image Generating Server or pc in my own Network without the need to pay for every generated Image.
@davidmclean50678 ай бұрын
This is spetacular!
@Engineerofeverything4 ай бұрын
Amazing
@bioport18 ай бұрын
Ran program but it stopped with "Failed to allocate memory is PSRAM for image Buffer" PSRAM Size = 2094783 using all your links for hardware... thanks for any help
@thelastoutpostworkshop8 ай бұрын
You seams to have an ESP32-S3 with 2MB of psram, in the chatGPT_DALLE.ino, change this two values to : #define PSRAM_BUFFER_DECODED_LENGTH 800000L // Length of buffer for base64 data decoding in PSRAM #define PSRAM_BUFFER_READ_ENCODED_LENGTH 800000L // Length of buffer for reading the base64 encoded data in PSRAM
@bioport18 ай бұрын
E (484) opi psram: PSRAM ID read error: 0x00000000, PSRAM chip n after changes...
@coil1002 Жыл бұрын
The code just puts my controller into a boot loop cant figure out why yet.
@thelastoutpostworkshop Жыл бұрын
What messages do you get on the serial monitor ?
@coil1002 Жыл бұрын
@@thelastoutpostworkshop ESP-ROM:esp32s3-20210327 Build:Mar 27 2021 rst:0x3 (RTC_SW_SYS_RST),boot:0x8 (SPI_FAST_FLASH_BOOT) Saved PC:0x403cdac2 SPIWP:0xee mode:DIO, clock div:1 load:0x3fce3808,len:0x44c load:0x403c9700,len:0xbe4 load:0x403cc700,len:0x2a68 entry 0x403c98d4 Repeatedly so fast you cant even read it
@coil1002 Жыл бұрын
Fixed it. I had the flash size wrong in the IDE as well as the incorrect psram setting. 16 mb flash with qspi for the psram. So i am out of the boot loop and on to the rest of the new fun challenges I will encounter!!