Search found 108 matches

by dmaxben
Thu Jun 20, 2019 1:59 pm
Forum: ESP32 Arduino
Topic: Storing Jquery as a C-string
Replies: 4
Views: 7008

Re: Storing Jquery as a C-string

spyder0069 wrote:
Tue Jun 18, 2019 5:16 pm
I am in the same boat. Did you get this to work? If so would you be willing to share your string? Thanks!
No, I was never able to figure it out unfortunately... :(

anyone else have ideas?
by dmaxben
Wed May 29, 2019 12:15 pm
Forum: General Discussion
Topic: New Chip ESP32-S2
Replies: 42
Views: 52261

Re: New Chip ESP32-S2

Will the new chip still have a CAN bus controller?
by dmaxben
Wed May 29, 2019 12:14 pm
Forum: General Discussion
Topic: espressif's "Chip7 2-2-A" spotted in the wild
Replies: 55
Views: 71756

Re: espressif's "Chip7 2-2-A" spotted in the wild

Will this new chip still have CAN bus?
by dmaxben
Thu Jan 31, 2019 1:34 pm
Forum: Hardware
Topic: FOTA from android phone
Replies: 3
Views: 5627

Re: FOTA from android phone

Has anyone had any luck getting lws-esp32-factory to build? https://github.com/warmcat/lws-esp32-factory Ive tried everything and keep getting errors...its too bad because it looks like an amazing setup... /mnt/c/Users/Ben/Dropbox/ESP-IDF/lws-esp32-factory/build/bootloader/bootloader_support/libboot...
by dmaxben
Wed Jan 30, 2019 1:43 pm
Forum: General Discussion
Topic: OTA update without internet/WiFi network
Replies: 12
Views: 18761

OTA update without internet/WiFi network

Had a question about doing ESP32 OTA firmware updates without internet access and without an existing WiFi network. What I would like to do is have the ESP32 setup as a WiFi access point , and then you can connect to it with a laptop or phone and choose/upload a firmware .bin directly from the lapto...
by dmaxben
Wed Jan 16, 2019 11:38 pm
Forum: ESP32 Arduino
Topic: Storing Jquery as a C-string
Replies: 4
Views: 7008

Storing Jquery as a C-string

Had a quick question regarding the "OTA web updater" program. I would like to be able to use the web-based updater function without internet access, using the ESP32 as an access point and not a client on an existing network. Basically, I would like to have a firmware bin stored on my phone, have the...
by dmaxben
Mon Dec 10, 2018 3:58 pm
Forum: ESP32 Arduino
Topic: Additional current draw in Deep Sleep+ULP if WiFi.begin() called
Replies: 5
Views: 6845

Re: Additional current draw in Deep Sleep+ULP if WiFi.begin() called

This is a regression in recent versions of ESP-IDF. We are working on a fix. For now you can add a call 'adc_power_off();' (from driver/adc.h) right before entering deep sleep. Excellent! Thank you. Do we have to call adc_power_on(); when the ESP32 wakes up from light sleep? Or is ADC re-enabled wh...
by dmaxben
Mon Dec 10, 2018 2:40 pm
Forum: ESP32 Arduino
Topic: Additional current draw in Deep Sleep+ULP if WiFi.begin() called
Replies: 5
Views: 6845

Re: Additional current draw in Deep Sleep+ULP if WiFi.begin() called

Ive noticed this problem too... In my program, if I initialize WiFi and then want to put the ESP32 in light-sleep, it uses 1.5-2mA more than if I never initialized WiFi at all. Ive tried calling: esp_wifi_stop() WiFi.mode(WIFI_OFF); esp_wifi_set_mode(WIFI_MODE_NULL) None of them COMPLETELY shut off ...
by dmaxben
Fri Aug 31, 2018 12:33 pm
Forum: General Discussion
Topic: CAN-Bus API multiple filter configuration
Replies: 6
Views: 10631

Re: CAN-Bus API multiple filter configuration

Why cant you just do a simple software setup?

ie

if (rx_frame.MsgID == 0x123)
{
read the message in and do something with it.
}
by dmaxben
Fri Aug 31, 2018 12:30 pm
Forum: Hardware
Topic: Is there any dev kit with 16MB flash?
Replies: 14
Views: 21580

Re: Is there any dev kit with 16MB flash?

Has anyone gotten the 16mb flash to work with the Arduino IDE? What is the procedure?