Dan Halbert

Results 87 comments of Dan Halbert

Jekyll has a plugin: https://github.com/jekyll/jekyll-redirect-from https://stackoverflow.com/questions/9276817/301-redirect-for-site-hosted-at-github, one of many discussions on this

I found Liquid to be a difficult template language to use. It was both awkward and weak. (I could use stronger words.) It's also hard to set up Ruby properly...

I wrote this library for a single project a long time ago. Now I work for Adafruit :slightly_smiling_face:, and I'll regularize the constructor. The normal thing we do now is...

Changed but not tested: - default branch is now `main`, so pull and checkout `main` instead of `master`, or re-clone. - Now you must pass in the `I2C` object to...

It should be `busio.I2C`, all caps.

@MattGlobal In the example you gave, there is no `pinMode()` between `analogRead()` calls. In my example, the pin usage alternates between `pinMode()` and `analogRead()`. My hypothesis is that the second...

Here is the impl: https://github.com/arduino/ArduinoCore-mbed/blob/68fbece79947ce2a64bf49f7ba5f5f8111d89454/cores/arduino/wiring_analog.cpp#L101-L121 The first time through, a new `mbed::AnalogIn` object is created. That's reused on subsequent calls. A workaround might be to call `analogUpdate()` before every call...