Search found 19 matches
- Mon Sep 02, 2024 12:15 am
- Forum: ESP-IDF
- Topic: BLE Mesh Relay Mode
- Replies: 0
- Views: 823
BLE Mesh Relay Mode
Hello, I am using an ESP32 in a ble mesh network where sometimes messages have to be relayed. However, nodes only wake up once per minute (unsynchronized), so I want to "blast" the message (i.e. resend it many times) for a whole minute to ensure that someone hears it. How do I access the relayed mes...
- Sun Sep 01, 2024 2:26 am
- Forum: ESP-IDF
- Topic: Ultra Low Power Consumption for BLE Sensor
- Replies: 0
- Views: 816
Ultra Low Power Consumption for BLE Sensor
Hello, I am working on a BLE mesh sensor node running on an ESP32, and I need the power consumption to be as low as possible. My current implementation wakes up from light sleep once every minute and takes a reading. In some special cases, I want to send that reading through the network to eventuall...
- Mon Jul 29, 2024 2:24 am
- Forum: General Discussion
- Topic: Torque of stepper motors
- Replies: 1
- Views: 996
Re: Torque of stepper motors
Hi, I am not familiar with that specific setup, but I built a 3d printer some time ago which I now use regularly (it is cartesian not coreXY). I used similar nema17 stepper motors for the x and y axes. I would recommend that you double up the motors on each axis whenever possible and/or consider a c...
- Thu Jun 13, 2024 9:56 pm
- Forum: ESP-IDF
- Topic: idf.py not found
- Replies: 5
- Views: 3163
Re: idf.py not found
I am working on a mac so I cannot vouch for the windows extension. If you cannot even install it, then I do not know how to help you. If you find a way to get esp idf on your computer, you will need to update your .profile to include something like this: alias get_idf='. $HOME/esp/esp-idf/export.sh'...
- Tue Jun 11, 2024 2:07 am
- Forum: ESP-IDF
- Topic: idf.py not found
- Replies: 5
- Views: 3163
Re: idf.py not found
I have a similar setup. I use VSCode with esp-idf extension to write the code, but I always use terminal window to build flash etc. This seems to work well. I would suggest trying that first to verify that there is nothing major wrong with your setup.
- Tue Jun 11, 2024 1:59 am
- Forum: ESP-IDF
- Topic: Issue with ESP-IDF "No ESP-IDF frameworks found"
- Replies: 3
- Views: 1327
Re: Issue with ESP-IDF "No ESP-IDF frameworks found"
Hello,
It might be a problem with the IDF_PATH environment variable. Did you set that to point to the esp-idf directory on your device? Check this out: https://docs.espressif.com/projects/esp ... ofile.html
It might be a problem with the IDF_PATH environment variable. Did you set that to point to the esp-idf directory on your device? Check this out: https://docs.espressif.com/projects/esp ... ofile.html
- Fri Jun 07, 2024 10:30 pm
- Forum: ESP-IDF
- Topic: Can't compile BLE
- Replies: 6
- Views: 1320
Re: Can't compile BLE
I think the problem is with the state of BLE_42_FEATURE_SUPPORT in the header file. You can try to override it by removing the if/endif in the header file and forcing it to define esp_ble_scan_params_t no matter what. Remember to change it back later though.
- Fri Jun 07, 2024 10:02 pm
- Forum: ESP-IDF
- Topic: Persistent Storage of BLE Config
- Replies: 1
- Views: 657
Persistent Storage of BLE Config
Hello, I am working on a BLE connected device built on ESP32 WROOM 32D that may frequently lose power, but will be out of range of a provisioner when it wakes up. Because of this, I need the device to store its configuration in flash memory after it is provisioned for the first time and be able to t...
- Fri Jun 07, 2024 9:34 pm
- Forum: ESP-IDF
- Topic: Can't compile BLE
- Replies: 6
- Views: 1320
Re: Can't compile BLE
Can you post your whole CMakeLists.txt file? That might help me understand whats going on.
- Thu Jun 06, 2024 10:34 pm
- Forum: ESP-IDF
- Topic: Reducing Power Consumption of BLE Mesh Sensor
- Replies: 1
- Views: 651
Reducing Power Consumption of BLE Mesh Sensor
Hey guys, I'm working on a sensor node on ESP32-WROOM32D that sends information periodically through a ble mesh network to reach one main node. One of my main constraints is power consumption/availability, so I have a piece of code that only sends the sensor status if there is a sudden change detect...