summaryrefslogtreecommitdiffstatshomepage
path: root/examples/hwapi
Commit message (Collapse)AuthorAge
* all: Fix various spelling mistakes found by codespell 2.2.6.Damien George2023-10-03
| | | | Signed-off-by: Damien George <damien@micropython.org>
* examples/hwapi: Add missing import for 96Boards Carbon example.Angus Gratton2023-08-16
| | | | | | Found by Ruff checking F821. Signed-off-by: Angus Gratton <angus@redyak.com.au>
* examples/hwapi: Rename uasyncio to asyncio.Jim Mussared2023-06-19
| | | | | | This work was funded through GitHub Sponsors. Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
* all: Replace all uses of umodule in Python code.Jim Mussared2023-06-08
| | | | | | | | Applies to drivers/examples/extmod/port-modules/tools. This work was funded through GitHub Sponsors. Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
* all: Fix spelling mistakes based on codespell check.Damien George2023-04-27
| | | | Signed-off-by: Damien George <damien@micropython.org>
* top: Replace upip with mip everywhere.Jim Mussared2022-09-30
| | | | | | | | | | Updates all README.md and docs, and manifests to `require("mip")`. Also extend and improve the documentation on freezing and packaging. This work was funded through GitHub Sponsors. Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
* all: Reformat C and Python source code with tools/codeformat.py.Damien George2020-02-28
| | | | This is run with uncrustify 0.70.1, and black 19.10b0.
* examples: hwconfig_console: Add .on()/.off() methods.Paul Sokolovsky2017-10-09
| | | | | Add these methods to this "GPIO output emulated with console prints" config.
* examples/hwapi/soft_pwm2_uasyncio: Update for call_later_ms().Paul Sokolovsky2017-05-17
| | | | Following finalized naming in uasyncio.
* examples/hwapi/hwconfig*: Use inline Signal() args where possible.Paul Sokolovsky2017-05-12
|
* examples/hwapi: Add config for Zephyr port of 96Boards Carbon.Paul Sokolovsky2017-04-27
|
* extmod/machine_signal: Rename "inverted" arg to "invert", it's shorter.Damien George2017-04-15
| | | | | | | A shorter name takes less code size, less room in scripts and is faster to type at the REPL. Tests and HW-API examples are updated to reflect the change.
* examples/hwapi/soft_pwm: Use Signal on()/off() methods.Paul Sokolovsky2017-02-14
| | | | | | Just one sample is updated with on()/off() for now, there should be remaining sample(s) showing .value() use (but more can be converted later, as long as 1 or so good samples of .value() remains).
* examples/hwapi: Be sure to import Signal when it's used.Damien George2017-02-09
|
* examples/hwapi: Add hwconfig_pyboard.py for pyboard.Kai Fricke2017-02-09
|
* examples/button_reaction: Update for time_pulse_us() no longer raising exc.Paul Sokolovsky2017-02-05
|
* examples/hwapi: Consistently use Signal class to define LEDs.Paul Sokolovsky2017-01-29
|
* examples/hwapi: Use Signal for inverted LED on ESP-12.Paul Sokolovsky2017-01-29
|
* examples/hwapi/hwconfig_console: Don't alloc memory in value().Paul Sokolovsky2016-12-23
|
* examples/hwapi: Add hwconfig for console tracing of LED operations.Paul Sokolovsky2016-11-18
|
* examples/hwapi: Add example for machine.time_pulse_us().Paul Sokolovsky2016-11-17
|
* examples/hwapi: Add uasyncio example of fading 2 LEDs in parallel.Paul Sokolovsky2016-11-14
|
* examples/hwapi: Add soft_pwm example converted to uasyncio.Paul Sokolovsky2016-11-13
|
* examples/hwapi: button_led: Add GPIO pin read example.Paul Sokolovsky2016-11-12
| | | | Requires BUTTON defined in hwconfig, so far tested on DragonBoard 410c.
* examples/hwapi: Add hwconfig for DragonBoard 410c.Paul Sokolovsky2016-11-10
| | | | | This requires recently added implementation of machine.Pin from micropython-lib.
* examples/hwapi: Example showing best practices for HW API usage in apps.Paul Sokolovsky2016-11-06
Showing and providing detailed instructions and motivation.