Search found 7 matches

by Linkpad
Mon Jun 24, 2024 5:57 pm
Forum: General Discussion
Topic: ESP32-H2 - Supported in PlatformIO?
Replies: 3
Views: 3056

ESP32-H2 - Supported in PlatformIO?

Hi, I want to use ESP32-H2 MCU for a project in PlatformIO but I can't see it listed on any of the boards is it supported? If not is there an IDE (not Arduino) that does?

Thanks!
by Linkpad
Sun Jun 02, 2024 6:34 pm
Forum: ESP-IDF
Topic: NimBLE Bluetooth SPP Client Example Problem
Replies: 3
Views: 1279

Re: NimBLE Bluetooth SPP Client Example Problem

Hi, Thanks! I have solved this problem trouble is I get a different compilation error now? If anyone can successfully compile the below example sketch let me know ( Blueooth LE SPP Client ):- https://github.com/espressif/esp-idf/tree/master/examples/bluetooth/nimble/ble_spp/spp_client My compile err...
by Linkpad
Sat Jun 01, 2024 4:37 pm
Forum: ESP-IDF
Topic: NimBLE Bluetooth SPP Client Example Problem
Replies: 3
Views: 1279

NimBLE Bluetooth SPP Client Example Problem

Hi, I am trying to run through a bluetooth LE nimble example I have managed to get the SPP Server up and running but the SPP Client example header file asks for a #include "esp_central.h" which doesn't seem to exist anywhere? Has anyone had any luck with this? Thanks! https://github.com/espressif/es...
by Linkpad
Sat Jun 01, 2024 4:34 pm
Forum: ESP-IDF
Topic: How to add lib files
Replies: 3
Views: 1044

Re: How to add lib files

Hi, I managed to get it too work by using #include <included.h> format which auto lists all the header files.
by Linkpad
Sun May 26, 2024 6:24 am
Forum: ESP-IDF
Topic: How to add lib files
Replies: 3
Views: 1044

How to add lib files

Hi, I am trying to understand the PlatformIO settings for projects and working on a new project which has external library files (headers & source files) which I have put in the 'lib' directory assuming the main.c file would automatically be able to find the path of these files as long as my include...
by Linkpad
Fri May 17, 2024 8:48 pm
Forum: General Discussion
Topic: ESP32 Starting Out Trouble
Replies: 1
Views: 648

ESP32 Starting Out Trouble

I am trying to transfer over to Platform IO using espressif framework from STM32CUBEIDE and finding it nearly impossible to get anything to compile? I am simply just wanting to make an LED blink on an off, I have downloaded all the " esp-idf-master " libraries and put them in the lib folder but ever...
by Linkpad
Sat May 11, 2024 12:41 pm
Forum: General Discussion
Topic: Bluetooth LE - duplicate services
Replies: 1
Views: 648

Bluetooth LE - duplicate services

Hi, I am trying to get my head around how Bluetooth LE would work if there were several transmitters and just 1 receiver (such as 3 heart rate monitors and 1 tft screen) how would one go about displaying all 3 devices heart rates separately? Would Bluetooth LE auto detect them? Thanks