Andrew Scheller

Results 2239 comments of Andrew Scheller

> I have similar problem: when I load encrypted uf2 file (using picotool), it works. However when I load bin variant of the same binary, it fails (rom_chain_image() returns -4)....

> The above workaround seems does not have effect.. Did you delete your build folder after applying @will-v-pi 's patch?

> Once this is merged, I'll merge identical actions into `picotool` and `pico-examples` Also `pico-extras` and `pico-playground` ?

I think it only needs to pass `0` instead of `None` if `pwm` is True? So I guess this _could_ use `initial_value=0 if pwm else None` :thinking:

This PR has broken https://github.com/gpiozero/gpiozero/blob/master/tests/test_boards.py#L1554 though, I _think_ if you changed `pwm=pwm, active_high=active_high, initial_value=0,` to `pwm=pwm, active_high=active_high, initial_value=0 if pwm else None,` then the tests might still pass?

> It's also not clear how it would be controlled. LEDCharDisplay "value" takes a char to display. The brightness value must be provided some other way. Yeah, if you're constructing...

pinging @nathan-contino our resident documentarian.

> Does it take a while for the changes to be applied to the docs site? Yes. The documentation has already been fixed on the [`develop` branch](https://github.com/raspberrypi/documentation/blob/develop/documentation/asciidoc/microcontrollers/pico-series/utilities.adoc) but it won't...

I guess this would be fixed by raspberrypi/pico-sdk#329 ?