Zsolt Gere Kiss

Results 23 comments of Zsolt Gere Kiss

I found a way to listen to the "save" event, when save is initiated: ``` jQuery('body').bind('midgardstoragesave', function (ev, data) { console.log("storage save event = %o", ev); }); ``` But unfortunately...

We are using Guzzle services successfully for a few years now and I thought to upgrade it, because version 3.5 is very outdated, you have Guzzle 6 now. Composer is...

A million thanks, @lexodistro ! This saved my day :-) I completely agree with BlackLight, btw.

Same here (trying on electron). I am quite disappointed, since the project seems abandoned, and I need to look for another MQTT solution (for Android and Electron). I used this...

The [Eclipse Paho JavaScript client](https://www.eclipse.org/paho/index.php?page=clients/js/index.php) is a very good MQTT JS library that uses WebSockets to connect to an MQTT Broker. The GitHub code contains a `utility` app which can...

It seems that nobody from sqfmi is watching this list, or does not care. I know that this is not a commercial product, but I am a (sad) project backer....

You at least succeeded to contact them, @RyanH54 . How was it possible?

Yes, StandardFirmata sets all pins to OUTPUT and LOW on startup, what came as a shock for me, because my circuit has also pins connected as INPUT to other controllers....

andreiasz, I use the following to set up pin modes and values: `#define PIN_RELAY_4 17 setPinModeCallback( PIN_RELAY_4, OUTPUT ); setPinValueCallback( PIN_RELAY_4, HIGH );` for example to set pin 17 as...

I can confirm @jdtsmith's reported problem on an ESP32-Mini32. I installed esp32-idf3-20200902-v1.13.bin, and input does not echo not come through. After commenting back line 78, with `uos.dupterm_notify`, telnet kind of...