claws

Results 21 comments of claws

Any chance you were going to pull this request? I ask because I have had someone send me a pull request for additional changes because my fork is now leading...

I encountered this same weird error with test_client using Viroba 0.0.6 on OSX (v10.13.5) and Python 3.6. I found a solution that seemed to resolve it for me. As indicated...

Binary metric support has been converted into an optional extra.

@ruichernob, I think you have confusing IronPython with [IPython](https://ipython.org/index.html). IPython is what you want, not IronPython. You can [install](https://ipython.org/install.html) IPython into your existing Python using pip: ```console $ pip install...

I'm happy to receive pull requests if you would like to propose a fix? With so many other things on the go it's hard for me to find the time.

Thanks for the feedback, I'll look into it when I get some time.

That error gets reported from ``readLightLevel`` if BH1750_MODE attribute is not set. The BH1750_MODE attribute is set in ``configure`` which is called from the ``begin`` function. It is initialised to...

It looks like you have wired it up correctly from the pictures. The BH1750 library returns a boolean value from ``begin`` to indicate whether the device was configured successfully. You...

I did look at the esm example you pointed out. I used that same file in the sequence of steps I attached that show how to reproduce the problem I...

After fixing the input args problem mentioned above, by changing the args to strings (b'foo' -> 'foo' and b'bar' -> 'bar'), I encountered another two problems running the example script....