Search found 477 matches

by username
Thu Aug 17, 2023 11:34 am
Forum: General Discussion
Topic: Getting Started?
Replies: 1
Views: 774

Re: Getting Started?

Any of the ESP32 devices can do what you want. The ESP32-S3 IMHO has the best bang for buck. I suggest you start with the ESP32-S3-DevKitC-1 v1.1 https://docs.espressif.com/projects/esp-idf/en/latest/esp32s3/hw-reference/esp32s3/user-guide-devkitc-1.html The head over to the examples to get a leg up...
by username
Wed Aug 16, 2023 2:16 am
Forum: General Discussion
Topic: Multiple versions of ESP-IDF are possible?
Replies: 3
Views: 1342

Re: Multiple versions of ESP-IDF are possible?

What you want is VSCode portable. Go here: https://code.visualstudio.com/download# Grab the .zip for your computer. What I have done is this. Create a folder ESP_5.1, then create a folder inside there named VSCPortable. Unzip the VSCodeportable to this folder. You also need to add another folder nam...
by username
Mon Aug 14, 2023 11:50 am
Forum: ESP-IDF
Topic: HTTP Server - Progress bar on front end
Replies: 3
Views: 1569

Re: HTTP Server - Progress bar on front end

The OTA i created for myself also uses a web page with a progress bar.
What i did was have the webpage itself show the progress by what it has sent so far, and not have it updated by the ESP32.
by username
Mon Aug 14, 2023 11:47 am
Forum: ESP8266
Topic: Quicker compile and load for small programs?
Replies: 2
Views: 6013

Re: Quicker compile and load for small programs?

228k is nothing for a 8MB part. You have to keep in mind this is not an Atmega, but uses an RTOS and has some overhead.
Also Arduino also adds more overhead as well. If you really want to shrink things down, use IDF.
by username
Mon Aug 14, 2023 11:44 am
Forum: Hardware
Topic: Confused about SPI pins on on the ESP32 PICO-V3-02
Replies: 2
Views: 885

Re: Confused about SPI pins on on the ESP32 PICO-V3-02

look in the examples folder, and check out the SPI examples.
https://github.com/espressif/esp-idf/tr ... eripherals
by username
Sat Aug 12, 2023 11:24 am
Forum: General Discussion
Topic: pin 20 on ESP32 S3 goes high after start
Replies: 2
Views: 1173

Re: pin 20 on ESP32 S3 goes high after start

If you do this and its still high, something else is going on.

gpio_reset_pin(GPIO_NUM_20); gpio_set_direction(GPIO_NUM_20, GPIO_MODE_OUTPUT);gpio_set_level(GPIO_NUM_20, LOW);
by username
Sat Aug 12, 2023 4:29 am
Forum: General Discussion
Topic: Partitions.csv Offset values, needed or not
Replies: 3
Views: 738

Re: Partitions.csv Offset values, needed or not

Thanks, but for the version that all are empty. There is nothing before nvs, so how does it know where to start ?
by username
Sat Aug 12, 2023 3:19 am
Forum: General Discussion
Topic: What would you like to see in The Next Chip?
Replies: 426
Views: 834282

Re: What would you like to see in The Next Chip?

A much better A/D converter. Pins for Vref & power to A/D converter.
by username
Fri Aug 11, 2023 8:36 pm
Forum: General Discussion
Topic: Is it possible to program ESP32 TTGO without using USB?
Replies: 2
Views: 1040

Re: Is it possible to program ESP32 TTGO without using USB?

Yes, all you need is to use Tx,Rx, GPIO0 & Reset. Get yourself one of these and connect the wires to your board. https://www.digikey.com/en/products/detail/espressif-systems/ESP-PROG/10259352 Or, if you have a simple USB to serial cable like one of these you can do it as well. https://www.amazon.com...
by username
Fri Aug 11, 2023 7:58 pm
Forum: General Discussion
Topic: Partitions.csv Offset values, needed or not
Replies: 3
Views: 738

Partitions.csv Offset values, needed or not

I have seen 2 styles of partiton.csv files in the example folder which I would like clarification on please. Some have an offset value and some do not. Obviously, the ones that don't work, so why do some examples use them and others do not? Is there any reason why we would need to add them ? One sty...