John "jdm" Miller
John "jdm" Miller
A sensor abstraction layer makes perfect sense - it's just good software hygiene, rather than forcing apps to deal with arbitrary scalings and such. That said, I don't think it's...
Actually, it looks like the Adafruit 10DOF board does not have SPI, only I2C and some interrupt pins. I'm using the individual boards, of which only L3DG20 has SPI. Sigh....
Yes, according to https://stackoverflow.com/questions/2822089/how-to-link-to-part-of-the-same-document-in-markdown the "standard" Markdown syntax is [some name](#my-linked-header) to link to ### My Linked Header Note that: 1) there is only one # in the reference, regardless...
I'm getting this, too. I can run the examples from bash just fine, but if I try to run that same code from ipython or jupyter, I immediately get that...
here's the error from anaconda python 3.6: pyhht/emd.py:376: RuntimeWarning: divide by zero encountered in true_divide
to get this to not crash, I wrapped that line with a try/except - after telling Numpy to raise Python errors (otherwise it doesn't). as I'm not intimately familiar with...