Search found 3 matches

by mirmit
Sat Mar 04, 2023 11:55 pm
Forum: ESP-IDF
Topic: BT/BLE HID device to multiple hosts
Replies: 0
Views: 646

BT/BLE HID device to multiple hosts

Hello,

Is it possible to have a ESP32 acting as HID device to be connected to multiple hosts and selectively send the message to one or other - i.e. having a keyboard connected to multiples PC and being able to send its keypress to one or other host devices?

Thanks,
by mirmit
Sat Sep 02, 2017 10:33 am
Forum: ESP32 Arduino
Topic: Strange Interrupt behavior on IO
Replies: 2
Views: 5610

Re: Strange Interrupt behavior on IO

I've tested by adding the interrupt info into a buffer and printf in the main look. void pin0LChanged() { if (pos < 100) buf[pos++] = 0x30; } void pin1LChanged() { if (pos < 100) buf[pos++] = 0x31; } void pin2LChanged() { if (pos < 100) buf[pos++] = 0x32; } And in the loop, the output part is: Seria...
by mirmit
Sat Aug 26, 2017 9:11 am
Forum: ESP32 Arduino
Topic: Strange Interrupt behavior on IO
Replies: 2
Views: 5610

Strange Interrupt behavior on IO

I'm in the process of migrating dome ESP8266 code to ESP32 and face a strange Interrupt handler behavior. The ESP32 is connected to an external system - hoverboard. The hall sensors, detecting wheel movements raise a square signal. I connect the 3 signal to 3 input pins on ESP32. I'm using a very si...