Nathan Mahdavi
Nathan Mahdavi
+1 there is an issue with using `$scoped` variables. A workaround I've found is to re-initialise the observers once the slider is ready. You can do the following: ``` ```...
spent quite a bit of time investigating and coming to the same conclusion as the above. created another reproducible repo here: https://github.com/scripter-co/express-nextjs-dynamic-routes
I personally think this is beyond the scope of this plugin, you can fairly easily generate the JSON client or server side by using `plottedPolyline.getLatLngs();` and then manipulating the data...
the internal array held of points can be accessed using `plottedPolyline.getLatLngs();`, can you not map these to your metadata or am I missing something? Perhaps adding and removing events should...
I've also noticed something similar. I recently migrated 5 devices to use NimBLE instead of the "native" Arduino BLE and all devices are exhibiting the same behaviour. I have put...
looking into this a bit further, it seems that `m_advertisedDevicesVector` inside of [NimBLEScan.cpp](https://github.com/h2zero/NimBLE-Arduino/blob/bc333ccb6e8d9ff2059af9cbd5006a290a4de3a5/src/NimBLEScan.cpp) slowly is increasing over time. I've added logs into the file: ```patch NIMBLE_LOGI(LOG_TAG, "New advertiser: %s", advertisedAddress.toString().c_str());...
> I have looked into this and the cause is due to active scanning and how it is handled. When a device is advertising with a scan response available the...
>For me, I can disable active scanning for now, see how the devices behave and report back. Obviously this doesn't help @nravanelli. just to follow up, as expected disabling active...
>@scripter-co @nravanelli I have created a branch that should resolve this here: https://github.com/h2zero/NimBLE-Arduino/tree/sr-timer > Please try it out and let me know, thanks! looks good. question though, if `max_results !=...
i'm struggling to find it, could you point out the line where `maxResults != 0` would cause the vector to be cleared? or are you saying that the client (consumer...