Ajay Ambaliya

Results 6 comments of Ajay Ambaliya

You need to read in this sequence to get txpower. byte recvID= LoRa.read(); // incoming txpower byte sendID= LoRa.read(); // incoming txpower byte txpower = LoRa.read(); // incoming txpower

Work with latest Arduino Release connection client insecured

Hey, I think High priority task does not switch to low priority task until vTaskDelay(). You can try below code snippest. also you have used Events so 2nd task blocked...

I received same results by using notification... ``` #include "Arduino.h" void producerFunction(void *pvParameters); void consumerFunction(void *pvParameters); EventGroupHandle_t controlGroupHandle; TaskHandle_t task1,task2; void setup() { Serial.begin(115200); vTaskDelay(2000); Serial.println("Starting"); controlGroupHandle = xEventGroupCreate(); xTaskCreatePinnedToCore(consumerFunction,...

Yes, I forgot to change during testing. After changing to 6 output as expected. > > I received same results by using notification... > > That's because your Producer and...

> I was wondering if would be possible to make LSS scan faster, mine is taking around 2 to 3 minutes to find a device > > Heres a piece...