Search found 12 matches

by hyu7000
Thu Dec 29, 2022 7:07 am
Forum: ESP-IDF
Topic: a color of st7789 lcd is not correct
Replies: 1
Views: 1182

a color of st7789 lcd is not correct

board : esp32s3 - wroom - 1 esp-idf 5.0 hi. im testing spi lcd example : lcd_tjpgd_example_main my issue is that the color is not display on the LCD, but other color are displayed. ex) i set Blue(0x001F, RGB565), but lcd displayed Green. uint16_t num[100]; for(int i = 0; i < 100; i++) { num[i] = 0x0...
by hyu7000
Mon Dec 26, 2022 11:00 am
Forum: ESP IoT Solution
Topic: can esp32s3 use esp-iot-solution?
Replies: 0
Views: 1788

can esp32s3 use esp-iot-solution?

supported chips is written in doc of esp-iot-solution (link)
https://espressif-docs.readthedocs-host ... oards.html

the list of supported chips is not include esp32s3.

is there way to use esp-iot-solution with esp32s3?
by hyu7000
Fri Dec 16, 2022 8:38 am
Forum: ESP IoT Solution
Topic: when i add code " include($ENV{IOT_SOLUTION_PATH}/component.cmake)", vscode show me ninja error
Replies: 0
Views: 1787

when i add code " include($ENV{IOT_SOLUTION_PATH}/component.cmake)", vscode show me ninja error

esp idf : 4.4.3 project : hellow world example project hi i want to add esp iot solution. so i created sample project and built no edit. it's success then in CMakeList.txt of root dir, i add "include($ENV{IOT_SOLUTION_PATH}/component.cmake)" for esp iot solution (previous process has been done, foll...
by hyu7000
Fri Dec 09, 2022 7:10 am
Forum: ESP-IDF
Topic: ble autoconnect is connected and disconnected repeatedly
Replies: 0
Views: 745

ble autoconnect is connected and disconnected repeatedly

device : esp32s3 master device : S21, android source : example_ble_sec_gatts_demo edited code : static esp_ble_adv_params_t heart_rate_adv_params = { .adv_int_min = 0x100, .adv_int_max = 0x100, .adv_type = ADV_TYPE_IND, .own_addr_type =BLE_ADDR_TYPE_PUBLIC, // edit_1 .channel_map = ADV_CHNL_ALL, .ad...
by hyu7000
Thu Dec 01, 2022 2:36 pm
Forum: ESP-IDF
Topic: is arduino-as-component project possible build only in esp-idf 4.4.2?
Replies: 1
Views: 944

is arduino-as-component project possible build only in esp-idf 4.4.2?

i use Vscode + esp idf 4.4.3 so i used 'create project from extension template' of View-command Pallete and created 'arduino-as-component' project. after it was created, i just build it.(no edit) in a little while, below error is appear. fatal error: Arduino.h: No such file or directory #include "Ar...
by hyu7000
Thu Nov 24, 2022 4:37 am
Forum: ESP32 Arduino
Topic: To change config, i just change sdkconfig file?
Replies: 2
Views: 1325

Re: To change config, i just change sdkconfig file?

is there no way to upload using arduino IDE?

the link's way can upload to esp32s3 but can't use arduino IDE as far as i know.

i can upload using esp-idf cmd but not Arduino IDE.
by hyu7000
Wed Nov 23, 2022 1:00 pm
Forum: ESP32 Arduino
Topic: To change config, i just change sdkconfig file?
Replies: 2
Views: 1325

To change config, i just change sdkconfig file?

i found a sdkconfig file at this path. C:\Users\hk910\AppData\Local\Arduino15\packages\esp32\hardware\esp32\2.0.5\tools\sdk\esp32s3\sdkconfig this sdkconfig file is right to change some setting? i changed some value and built, but i didn't recognize. can you let me know something i miss? thank you i...
by hyu7000
Fri Nov 11, 2022 6:05 am
Forum: ESP-IDF
Topic: how to set connection interval in ble
Replies: 0
Views: 881

how to set connection interval in ble

i am building 'ble50 security server' example project with bluetooth modem sleep i wish to change connection interval. what funcion(or api) use i? in my case, connection interval recorded 48.75ms at https://github.com/espressif/esp-idf/issues/947#issuecomment-500312453, MAX cpu frequency = 80MHz ADV...
by hyu7000
Fri Nov 04, 2022 4:54 am
Forum: Hardware
Topic: [esp32 s3] when bluetooth modem sleep enable and try connect, did not connect
Replies: 3
Views: 2534

Re: [esp32 s3] when bluetooth modem sleep enable and try connect, did not connect

althorgh it change 80mhz, now it's show me error again...
by hyu7000
Mon Oct 31, 2022 6:47 am
Forum: Hardware
Topic: [esp32 s3] when bluetooth modem sleep enable and try connect, did not connect
Replies: 3
Views: 2534

Re: [esp32 s3] when bluetooth modem sleep enable and try connect, did not connect

chegewara wrote:
Sat Oct 29, 2022 1:40 am
Hi,
Im not sure if its the case, or maybe i am wrong, but i believe that CPU min clock for wifi and bluetooth is 80MHz.
when min_freq_mhz was changed to 80, esp32 successly receive data.

Thank you sir.