pimoroni-pico/micropython/modules/pico_scroll/README.md

176 wiersze
4.6 KiB
Markdown

# Pico Scroll Pack - MicroPython <!-- omit in toc -->
Our Pico Scroll Pack offers a 17x7 white LED matrix for your Raspberry Pi Pico. It also includes four buttons!
We've included helper functions to handle every aspect of drawing to the matrix and interfacing with the buttons. See the [function reference](#function-reference) for details.
- [Example Program](#example-program)
- [Function Reference](#function-reference)
- [init](#init)
- [get_width](#get_width)
- [get_height](#get_height)
- [set_pixel](#set_pixel)
- [set_pixels](#set_pixels)
- [show_text](#show_text)
- [scroll_texr](#scroll_text)
- [show_bitmap_1d](#show_bitmap_1d)
- [update](#update)
- [clear](#clear)
- [is_pressed](#is_pressed)
## Example Program
The following example sets up the matrix, sets each pixel to an increasing brightnesses level, and then clears the matrix only after button A is pressed.
```python
import picoscroll
# Initialise the board
picoscroll.init()
brightness = 0
# For each pixel in the matrix
for y in range (0, picoscroll.get_height()):
for x in range (0, picoscroll.get_width()):
# Set that pixel to an increasing level of brightness
picoscroll.set_pixel(x, y, brightness)
brightness += 2
# Push the data to the matrix
picoscroll.update()
# Wait until the A button is pressed
while picoscroll.is_pressed(picoscroll.BUTTON_A) == False:
pass
# Set the brightness of all pixels to 0
picoscroll.clear()
picoscroll.update()
```
## Function reference
### init
Sets up the Pico Scroll Pack. The `init` function must be called before any other functions as it configures the required pins on the Pico board.
```python
picoscroll.init()
```
### get_width
### get_height
These return integers describing the height and width of the Scroll Pack in pixels.
```python
width_in_pixels = picoscroll.get_width()
height_in_pixels = picoscroll.get_height()
```
### set_pixel
This function sets a pixel at the `x` and `y` coordinates to a brightness level specified by the `l` parameter. The value of `l` must be 0-255. Changes will not be visible until `update()` is called.
```python
picoscroll.set_pixel(x, y, l)
```
### set_pixels
This function sets all pixel at once from a `bytearray` image indexed
as `y * picoscroll.get_width() + x`, containing brightness levels
between 0 and 255. Changes will not be visible until `update()` is called.
```python
image = bytearray(0 for j in range(width * height))
picoscroll.set_pixels(image)
```
### show_text
Show a text string with given brightness and offset - allowing you to
scroll text across the display. Can also be passed a `bytearray`. Font
is 5x7 pixels, with a 1 pixel space between characters, so to scroll a
phrase across the entire display involves offsets from -17 pixels to
`6 x len(str)`:
```python
word = "Hello, world!"
l = len(word) * 6
for j in range(-17, l):
scroll.show_text(word, 8, j)
scroll.update()
time.sleep(0.1)
```
The full 256 characters can be displayed with:
```python
b = bytearray(range(256))
for j in range(256*6):
scroll.show_text(b, 8, j)
scroll.update()
time.sleep(0.1)
```
![Font map](./bitmap.png)
### scroll_text
Scroll a string across the picoscroll, starting off the right hand side, to the left, with a given delay in ms.
```python
picoscroll.scroll_text("Hello, world!", 8, 100)
```
The full 256 characters can be displayed with:
```python
b = bytearray(range(256))
scroll.scroll_text(b, 8, 100)
```
### show_bitmap_1d
Show a view of a bitmap stored as the 7 least significant bits of
bytes in a `bytearray`, top-down. Individual pixels are set to
`brightness` based on individual bit values, with the view defined by
the offset and the width of the scroll (i.e. 17 columns). Changes will
not be visible until `update()` is called.
```python
bitmap = bytearray(j for j in range 127)
for offset in range(-17, 127):
picoscroll.show_bitmap_1d(bitmap, 16, offset)
picoscroll.update()
```
will scroll a binary counter across the display (i.e. show `0x00` to
`0x7f` in binary).
### update
Pushes pixel data from the Pico to the Scroll Pack. Until this function is called any `set_pixel` or `clear` calls won't have any visible effect.
```python
picoscroll.update()
```
### clear
Sets the brightness of all pixels to `0`. Will not visibly take effect until `update` is called.
```python
picoscroll.clear()
```
### is_pressed
Checks if a specified button is currently being pressed. Valid values of `b` are `picoscroll.BUTTON_A`, `picoscroll.BUTTON_B`, `picoscroll.BUTTON_X`, or `picoscroll.BUTTON_Y`, which match the silkscreen labels beside the buttons on the board.
```python
picoscroll.is_pressed(b)
```