Results 19 comments of Dave

Here is an example, it mimics the ofono dbus interface (just a little). It can be placed in the node-dbus/test directory. ``` // ****************** START #!/usr/bin/env node "use strict"; var...

One other note, you need to make sure your permissions are set to allow queries on the system dbus, I'm a little hazy on the details. Here is my /etc/dbus-1/system.d/ofono.conf...

Ok I got the first attempt working. I did the client in 'c' since mixing javascript + c would require too many back and forth context changes, not sure how...

New idea occured to me. I ran into a roadblock where I want to include a 100k js file but there is a failure, because the read buffer can't cope...

They're associated with the ide you just got working... You can click the load button and you'll see them listed.

test_neopixel_webserver.js rename to tst_neopixel_wbsrvr.js would fix it

I saw the same error, but I didn't pay attention to it since it didn't halt the make process...

When my partitions line had a size 0x180000: SPIFFS,data,SPIFFS,0x180000,0x180000, # WRONG I got the same SPIFFS_ERR_NOT_A_FS you mentioned earlier. Setting the partition size to 0x80000 to match the mkspiffs command...

I think the problem is the spiffs.img generated by mkspiffs is not consistent with the esp-idf spiffs configuration or implementation. I've tried various mkspiffs versions and the tool is intrinsicly...

I remember seeing such an assertion somewhere... yeah, here it is: https://github.com/pellepl/spiffs/tree/f5e26c4e933189593a71c6b82cda381a7b21e41c#features That claims tmp/myfile.txt will become myfile.txt BUT that isn't consistent with observations. The stat of web/ide.html succeeds, but...