M5Stack-Camera icon indicating copy to clipboard operation
M5Stack-Camera copied to clipboard

Base espressif esp32-camera

Results 15 M5Stack-Camera issues
Sort by recently updated
recently updated
newest added

M5Stack-Camera/qr/main/main.c:274:17: error: incompatible types when assigning to type 'ip4_addr_t' {aka 'struct ip4_addr'} from type 'esp_ip4_addr_t' {aka 'struct esp_ip4_addr'} s_ip_addr = event->event_info.got_ip.ip_info.ip; ^

Do you have any plan to support Timer Cameras in menuconfig? I've checked pins and they are not compatible with older models, and Timer Cameras use OV3660.

I have a strange problem. I get my cam running over wifi - but don't see anything else than a black screen. My output is: `MONITOR --- idf_monitor on /dev/ttyUSB0...

Hi, I try to flash my new M5Stack ESP32 cam. While making my project I get the following error: `error: 'GPIO_PIN_COUNT' undeclared here (not in a function); did you mean...

Module: ESP32CAM ``` /home/xxx/workspace/m5cam/components/esp32-camera/driver/twi.c:61:24: error: 'rtc_gpio_desc' undeclared (first use in this function); did you mean 'rtc_io_desc'? uint32_t rtc_reg = rtc_gpio_desc[pin].reg; ``` Requires RTCIO support be enabled in 'make menuconfig': ![image](https://user-images.githubusercontent.com/30533684/82684064-04b3cc00-9c20-11ea-82bb-a4b4960fbe71.png)

I have a M5stack Camera F ,trying to load the wifi_sta program,when make compile, error occur: **error: 'ledc_timer_config_t' {aka 'struct '} has no member named 'bit_num';**

Hello, I have a camera M5stack F and i want to flah with wifi_sta (Windows 10 & ESP-IDF 4.0) but i can't do it, Can you help me please, I'm...

Hi, I can't build this project as follows. [820/821] Linking CXX executable camera.elf FAILED: camera.elf cmd.exe /C "cd . && C:\Users\yshin\.espressif\tools\xtensa-esp32-elf\esp-2019r2-8.2.0\xtensa-esp32-elf\bin\xtensa-esp32-elf-g++.exe -mlongcalls -Wno-frame-address -O3 -DNDEBUG -nostdlib @CMakeFiles\camera.elf.rsp -o camera.elf &&...

Fix 2 problem : - ip address type mismatch (ip4_addr_t -> esp_ip4_addr_t) - LEDc configuration error and camera_probe failed (https://github.com/espressif/esp32-camera/issues/66) My configuration : - module: M5Camera - B - ESP-IDF...

Hi All: I open the wifi(AP) as below: wifi_init_softap(); vTaskDelay(100 / portTICK_PERIOD_MS); http_server_init(); Then I created the qr_reco task as below: xTaskCreate( qr_recognize, "qr_recognize", 1024*60, &camera_config, 8, &xTask4); But the...