Search found 42 matches

by Cellie
Sun Apr 01, 2018 2:49 pm
Forum: ESP32 Arduino
Topic: ( Solved - help wanted ) Want to include GitHub tag/version into project.
Replies: 3
Views: 5896

( Solved - help wanted ) Want to include GitHub tag/version into project.

EDIT: - The scripts I made and a proper explanation and how-to can be found here . The scripts can also be found in the last post of this thread . The scripts work for Linux only. If anyone could port these scripts to Windows and/or OSX and post them in this thread it would be greatly appreciated. /...
by Cellie
Sun Mar 18, 2018 8:45 pm
Forum: Hardware
Topic: WROVER-KIT-V2 programming problems - Non-responsive board
Replies: 9
Views: 12742

Re: WROVER-KIT-V2 programming problems - Non-responsive board

I am happy to report that my replacement board works as expected.

Thanks to all for replying.
by Cellie
Fri Feb 23, 2018 9:45 am
Forum: General Discussion
Topic: Where to download Esptouch v0.3.4.6 APK for ESP32 smartconfig v2.7.1
Replies: 3
Views: 9053

Re: Where to download Esptouch v0.3.4.6 APK for ESP32 smartconfig v2.7.1

There is also the ESP8266 SmartConfig app (not by Espressif) which has the same functionality and is available from Google Play store.

Does the job for me.
by Cellie
Tue Feb 06, 2018 3:13 pm
Forum: ESP32 Arduino
Topic: Looking for a ESP32 TouchScreen Library
Replies: 9
Views: 21693

Re: Looking for a ESP32 TouchScreen Library

If it is a XPT2046 then this one should work:

https://github.com/PaulStoffregen/XPT2046_Touchscreen
by Cellie
Mon Jan 29, 2018 1:16 pm
Forum: Hardware
Topic: WROVER-KIT-V2 programming problems - Non-responsive board
Replies: 9
Views: 12742

Re: WROVER-KIT-V2 programming problems - Non-responsive board

Just did a clean install Arduino IDE on my Windows7 laptop. Followed the install guide . Everything went well except the board is not recognized. I guess it must be a faulty board in some way because I did not get a beep from the wrover board. @WiFive: USB cables: have a lot lying around and use the...
by Cellie
Fri Jan 26, 2018 6:49 pm
Forum: Hardware
Topic: WROVER-KIT-V2 programming problems - Non-responsive board
Replies: 9
Views: 12742

Re: WROVER-KIT-V2 programming problems - Non-responsive board

@loboris

Yes.
Same result. The board does not report.

Otherwise it seems to run fine with a simple demo cycling both the rgb led and display.
by Cellie
Fri Jan 26, 2018 2:51 pm
Forum: Hardware
Topic: WROVER-KIT-V2 programming problems - Non-responsive board
Replies: 9
Views: 12742

Re: WROVER-KIT-V2 programming problems - Non-responsive board

@ESP_Sprite Sorry to hijack this thread, but I have the exact same problem as the original poster. Working on Linux Mint 17.2. I can connect to all other esp32 boards I have. No comms. possible with this board. Nothing shows when connecting the board. `lsusb' shows nothing. Here is an image with the...
by Cellie
Thu Jan 25, 2018 5:19 pm
Forum: Sample Code
Topic: Arduino example: Simple dallas sensor webserver.
Replies: 2
Views: 6908

Re: Arduino example: Simple dallas sensor webserver.

What is the longest period your device has responded successfully to Web requests, IE: number of days ? Atm my fish tanks run 12 days with Dallas sensor code comparable to the example. http://vissen.wasietsmet.nl/ http://salamanders.wasietsmet.nl/ I had uptimes on several ESP32 devices (and respond...
by Cellie
Thu Jan 25, 2018 12:44 pm
Forum: News
Topic: New ESP32 hardware spotted: M5 Stack
Replies: 0
Views: 16277

New ESP32 hardware spotted: M5 Stack

Just stumbled upon this nice ESP32 board: [AliExpress](https://nl.aliexpress.com/item/M5Stack-Extensible-micro-control-module-WiFi-Bluetooth-ESP32-development-kit-for-Arduino-LCD/32828364296.html?spm=a2g0z.search0104.3.1.70da6970vDIrwT&ws_ab_test=searchweb0_0,searchweb201602_2_10065_10344_10068_1034...
by Cellie
Thu Jan 11, 2018 11:31 am
Forum: ESP32 Arduino
Topic: esp32 tone
Replies: 2
Views: 16044

Re: esp32 tone

You can use: ledcWriteTone(uint8_t channel, double freq); Remember to first setup pwm: ledcSetup(uint8_t channel, double freq, uint8_t resolution_bits); See: https://github.com/espressif/arduino-esp32/blob/master/cores/esp32/esp32-hal-ledc.h Example: https://github.com/espressif/arduino-esp32/blob/m...