Chris van Marle
Chris van Marle
Running `npm install` in the epoll dir works correctly: ``` ~/MagicMirror/modules/MMM-PIR-Sensor/node_modules/epoll $ npm install ~/MagicMirror/modules/MMM-PIR-Sensor/node_modules/epoll $ grep -r compression build/config.gypi: "v8_enable_pointer_compression": 0, ``` However it seems that using `electron-rebuild` breaks...
``` ~/MagicMirror/modules/MMM-PIR-Sensor $ DEBUG="electron-rebuild" ./node_modules/.bin/electron-rebuild -e ../../node_modules/electron ⠋ Searching dependency tree electron-rebuild rebuilding with args: [Arguments] { '0': { buildPath: '/home/pi/MagicMirror/modules/MMM-PIR-Sensor', electronVersion: '16.0.5', arch: 'arm', extraModules: [], onlyModules: null, force:...
It looks like there might be something going on with signed vs unsigned types...
Thanks @dnikles, that works for me too. I've added these two icons to my Card: ``` append_icons: true icons: - icon: mdi:home-floor-0 tap_action: action: call-service service: vacuum.send_command service_data: command: load_multi_map...
Hi @Snake16547 , This is an issue that has been popping up once in a while with the module. A quick fix for your situation: ```bash #Change into the modules...
Thanks for your feedback. Somehow using `CXXFLAGS` does work, where `CPPFLAGS` doesn't. So it seems my issue is solvable. **Using CPPFLAGS** ``` $ cat Makefile # Arduino Make file. Refer...
Just found out that using CXXFLAGS does influence the build. The following arguments are missing when using CXXFLAGS from my Makefile: `-fpermissive -fno-exceptions -std=gnu++11 -f| braries/Servo/src -I/home/chris/arduino-1.8.5//hardware/arduino/avr/libraries/EEPROM/src -Wall -ffun no-threadsafe-statics...
Jup, that seems to make it work. Updated the PR to reflect this :) Thanks for your help in figuring it out and make the solution much cleaner.
Just checking up if you are going to merge this into master? I am referring Arduino-Makefile in one of my projects that I'm going to share with some friends. If...
Just noticed another PR (https://github.com/requests/toolbelt/pull/278) mentioning the same issue. Though I think my contribution is a little more complete (doc update and safety setting on [line 43](https://github.com/requests/toolbelt/pull/293/commits/9f6209553bbf8f31caccaf8efe15c89ec74dd147#diff-c1d62f9f5fe78fc2fe4a7ccbd0670f54R43)).