sekarpdkt

Results 16 comments of sekarpdkt

I created a branch in my fork. If you are ok with that, I can send a PR for same. If possible check this branch. https://github.com/sekarpdkt/gpslogger/tree/sekarpdkt-customURLSender thanks

Hi My use case was bit different as mentioned above. Wanted to log every 10sec, but send update to server every 2min. In addition, upload file to server. Let me...

Wrt AP/STA, trying to integrate it with esp_mesh(). (with out camera related load). And did some more enhancements like storing the wifi info in AES256 encrypted format... Actual key will...

Any luck with this. I would like to keep it without boost.

This workaround seems like working. ``` $(`#qb`).on('afterUpdateRuleOperator.queryBuilder', function (e, rule) { if (rule.filter && rule.filter.input=="select") { try{ rule.$el.find('.rule-value-container select').select2('destroy'); }catch(e){} var hybridOperators = ['in','not_in']; if (hybridOperators.indexOf(rule.operator.type) == -1) { rule.filter.multiple=false;...

If expectation is only zebra date picker, it works with following modifications. Do not configure plugin as zebra date picker while defining the filter. Keep it normal string ``` {id:"date",...

To get above working for between and not between, did some more changes. https://jsfiddle.net/6b7umoen/ ``` $(`#builder-basic`).on('afterUpdateRuleOperator.queryBuilder', function (e, rule) { if (rule.filter.data && rule.filter.data.isDateTime) { if(rule.operator.nb_inputs>1){ rule.value=[] rule.$el.find('.rule-value-container input').Zebra_DatePicker(rule.filter.plugin_config); }...

@frezbo I tried to build it in an aarch64 machine. It failed at ``` Step 32/48 : COPY APKBUILD . COPY failed: stat /var/lib/docker/tmp/docker-builder150348522/APKBUILD: no such file or directory ```...

I just copied all files from `/framework-arduinoespressif32/tools/sdk/esp32/lib/` from downloaded gz to `~/.arduino15/packages/esp32/hardware/esp32/2.0.2/tools/sdk/esp32/lib/`. Getting new error. ``` undefined reference to `_printf_float' undefined reference to `_scanf_float' ``` Do I need to do...