Paolo D'Apice
Paolo D'Apice
Don't forget that you need to declare that the pin is used for input: Put this right before your loop: ``` ruby arduino.pin_mode 1, ArduinoFirmata::INPUT ```
I just bumped into this while using `where_raw`. For example, instead of: ```python User.where_raw('name = ?', name) ``` one has to write: ```python User.where_raw('name = %s', name) ```
@goatandsheep that's great! perhaps you want to update also the README mentioning the multi-environment support.
It seems that this is fixed in the fork from @adamtwatson? Can we cherry-pick that commit in this repo?
I also have a similar setup and my error handler is not called. I also wrote a unit test and indeed the error handler is not called. Any help?
May be related to #459.
@gabrielfalcao I am working on a MR for this. So far it works for my need, but my test case hangs. I feel I am missing something. Could you point...
I figured out how to fix the test and I have submitted a PR #448 .
I've bumped into this too with version 1.1.4. Our Django project has hundreds of test cases and is running tests fails with the `OSError: [Errno 24] Too many open files`....
I monitored the open files with `lsof` and it seems that the number of files is always increasing, eventually reaching the OS maxfiles limit. @gabrielfalcao I believe that something is...