micropython/ports/rp2/boards/NULLBITS_BIT_C_PRO/README.md

18 wiersze
342 B
Markdown
Czysty Zwykły widok Historia

# nullbits Bit-C PRO
The nullbits Bit-C PRO Board is based on the Raspberry Pi RP2040, and comes in the Arduino Pro Micro footprint.
## Board-specific modules
The `board` module contains definitions for the onboard RGB LED.
Example:
```python
>>> import board
>>> board.led_red.on()
>>> board.led_green.on()
>>> board.led_blue.on()
```