Search found 17 matches

by erhardd
Sun Mar 12, 2017 10:15 am
Forum: General Discussion
Topic: ESP32-DevKitC in Ubuntu on VirtualBox
Replies: 9
Views: 21431

Re: ESP32-DevKitC in Ubuntu on VirtualBox

I see, you use the DevKitC.
Have you pushed down the "boot"-Button while programming? :)
by erhardd
Fri Mar 10, 2017 9:17 am
Forum: Sample Code
Topic: [Video] ESP32 - Driving the MAX7219
Replies: 3
Views: 12759

Re: [Video] ESP32 - Driving the MAX7219

Thanks, very nice!
Look here please.(Arduino-IDE):
https://www.mikrocontroller.net/topic/405743#4790652
by erhardd
Sun Mar 05, 2017 8:18 pm
Forum: General Discussion
Topic: VGA driver ?
Replies: 5
Views: 10322

Re: VGA driver ?

Only a hint: You should take a 8-bit IF for GLCD and merge together https://s22.postimg.org/nrsef145d/UZE_Box.jpg with this https://esp32.com/viewtopic.php?f=19&t=702 look also http://www.jcwolfram.de/projekte/avr/chipbasic2/hard.php and: https://www.mikrocontroller.net/topic/377963#4292846 A lot of...
by erhardd
Tue Feb 21, 2017 5:42 pm
Forum: General Discussion
Topic: stack overflow using nvs
Replies: 4
Views: 7658

Re: stack overflow using nvs

Used Sparkfun-thing(ESP32) with MSYS comp. and flashed.(Win7)Image
by erhardd
Wed Feb 01, 2017 4:17 pm
Forum: ESP32 Arduino
Topic: WiFi Web Server LED Blink
Replies: 0
Views: 6281

WiFi Web Server LED Blink

The simplest Webserver-Sketch I've found. https://codebender.cc/sketch:37120#SimpleWebServerWiFi.ino For my "SparkFun ESP32 Thing" I only commented out the: /* // check for the presence of the shield: if (WiFi.status() == WL_NO_SHIELD) { Serial.println("WiFi shield not present"); while(true); // don...
by erhardd
Tue Jan 17, 2017 3:17 pm
Forum: ESP-IDF
Topic: Where to get peripheral input clocks
Replies: 3
Views: 6945

Re: Where to get peripheral input clocks

I also search an easy way to get the input clock frequency for peripherals.
Need the XCLK for OV7670 without the LEDC-module.
Free running (with start/stop) at a GPIO-Pin(frequ. 10 to 48 Mhz)..
by erhardd
Mon Jan 09, 2017 11:01 am
Forum: Hardware
Topic: Camera
Replies: 19
Views: 41488

Re: Camera

Thanks for your hints!
At this point i decide to roll-back my Arduino-IDE.
Unexpectedly where everywhere Arduino15 folder are filed under Windows.
If there were no hardware i need like PC-Scope/Generator(Vellemann) and anymore I would prefer a Linux-Distri.
by erhardd
Sun Jan 08, 2017 8:10 pm
Forum: Hardware
Topic: Camera
Replies: 19
Views: 41488

Re: Camera

You can take GPIO32..39 as Input. That's right! But I need an 8-bit Output for the ILI9325 (ucg-lib) and the pseudo-Input for CAM at the same pins.. p.s.: Have you found the missing Vsync ? Use you the VSPI for your ILI9341? At Prgr.3 I display the contents of the SD-card(not included-->see http://e...
by erhardd
Sun Jan 08, 2017 3:26 pm
Forum: Hardware
Topic: Camera
Replies: 19
Views: 41488

Re: Camera

This was the right hint. I've changed it to : timer_conf.bit_num = LEDC_TIMER_13_BIT; and it compiled. 13-bit deep timer, i don't know, but seems to be right? btw.: The 8-bit Bus for the Display-Output Pins -->d0 to d7 13,12,14,27,26,25,3,4 Don't use Pins 32 to 39. These pins are the same for input-...
by erhardd
Sun Jan 08, 2017 10:44 am
Forum: Hardware
Topic: Camera
Replies: 19
Views: 41488

Re: Camera

I want to be as closed as possible to Krzysztofs great https://github.com/krzychb/esp32-cam-demo#connect ; Only want to port the idf-project to Arduino-IDE without freeRTOS. The famous DMA-transfer is good to look at for further use. I think i would do the reading out of the GRAM-Display with this. ...