Search found 86 matches

by Zeni241
Sat May 22, 2021 7:15 am
Forum: Hardware
Topic: High quiescent current of LDO ASM1117 on ESP32-‎PICO-KIT V4.1
Replies: 0
Views: 1511

High quiescent current of LDO ASM1117 on ESP32-‎PICO-KIT V4.1

I am choosing a development board for a battery with solar operated device. I want to choose ESP32-‎PICO-KIT V4.1 because of its certifications. But the hitch is LDO ASM1117 on this board. The Quiescent ‎current of this LDO is 5mA which is too much for battery operated device. Any good reason Espres...
by Zeni241
Wed Mar 03, 2021 4:35 pm
Forum: Hardware
Topic: Can I ship the product (internationally) with LiPo battery included?
Replies: 2
Views: 2514

Re: Can I ship the product (internationally) with LiPo battery included?

Thanks WiFive. I learned that ICAO and IATA have quite a number of resources on the topic.
by Zeni241
Wed Mar 03, 2021 6:20 am
Forum: Hardware
Topic: Can I ship the product (internationally) with LiPo battery included?
Replies: 2
Views: 2514

Can I ship the product (internationally) with LiPo battery included?

I want to distribute an IoT product commercially. The product is powered by LiPo battery (3.7V nominal) ‎which is charged by solar panel (6V, 2W). ‎ My question is can I ship the product (internationally) with LiPo battery included? Are there any ‎regulations against it? What is the usual practice i...
by Zeni241
Wed Feb 17, 2021 6:14 am
Forum: ESP-IDF
Topic: Difference in programming WROVER and WROOM
Replies: 5
Views: 5918

Re: Difference in programming WROVER and WROOM

From Datasheet:
External connections can be made to any GPIO except for GPIOs in the range 6-11, 16, or 17. GPIOs 6-11 are connected
to the module’s integrated SPI flash and PSRAM. GPIOs 16 and 17 are connected to the module’s integrated PSRAM
I can't see these pins exposed in modules.
by Zeni241
Tue Feb 16, 2021 12:45 pm
Forum: ESP-IDF
Topic: Difference in programming WROVER and WROOM
Replies: 5
Views: 5918

Re: Difference in programming WROVER and WROOM

Thanks dastoned.
you're not using the pins which connect to the PSRAM chip, you're good
That's it? Sounds good. And Which pins connect to the PSRAM chip? I will keep miles away from those :mrgreen:
by Zeni241
Tue Feb 16, 2021 8:47 am
Forum: ESP-IDF
Topic: Difference in programming WROVER and WROOM
Replies: 5
Views: 5918

Difference in programming WROVER and WROOM

I have used ESP-IDF for programming WROOM based boards for some time now. Just want to confirm before ordering WROVER modules (which I have never used before), Is there any difference in programming WROVER and WROOM using ESP-IDF?
by Zeni241
Fri Feb 12, 2021 10:37 am
Forum: ESP-IDF
Topic: MQTT problem
Replies: 6
Views: 7805

Re: MQTT problem

Never used "emqx.io" broker so cannot be sure. Just a guess, in
mqtt_cfg.uri = "mqtt://broker.emqx.io";
shouldn't it be mqtts:// instead of mqtt://.

Also where are credentials, username, password etc.?
by Zeni241
Fri Nov 27, 2020 7:07 am
Forum: ESP-IDF
Topic: esp_netif_destroy is not working
Replies: 0
Views: 1628

esp_netif_destroy is not working

If a user didn't sent correct SSID and PW in first attempt, he resends the credentials and "wifi_init_sta(void)" is executed again. But the second time core panics, most probably the first instance of "esp_netif" is not destroyed. I know "esp_netif_init()" should be fired only once and if firing sec...
by Zeni241
Thu Nov 19, 2020 6:04 am
Forum: ESP-IDF
Topic: How can I change the value of BLE characteristic in the code?
Replies: 1
Views: 2419

Re: How can I change the value of BLE characteristic in the code?

Finally I was able to change value of characteristic and also notify to the client. For anyone stuck like me, while following gatt_server_service_table example: I defined characteristic value as : uint8_t char_value[] = "InitialValue"; Added characteristic in the table as follows: [IDX_CHAR_A] = {{E...
by Zeni241
Tue Nov 17, 2020 2:41 pm
Forum: ESP-IDF
Topic: How can I change the value of BLE characteristic in the code?
Replies: 1
Views: 2419

How can I change the value of BLE characteristic in the code?

I am following sample of “gatt_server_service_table” at https://github.com/espressif/esp-‎idf/tree/release/v4.1/examples/bluetooth/bluedroid/ble/gatt_server_service_table .‎ My question is how can I change the value of characteristic in the code? I mean if I want to convey ‎changes in temperature va...