diff options
| author | Scott Shawcroft <scott@adafruit.com> | 2021-01-26 17:31:26 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-26 17:31:26 -0800 |
| commit | 45b3c9ae4213008da092d5bb35e8602e1e90bca2 (patch) | |
| tree | 12c027d358443ac4132e7a3400e5760eb56a3d5a /shared-bindings/rgbmatrix/RGBMatrix.h | |
| parent | 351a0e747d30daa5adab2d059a6422c5a4523e15 (diff) | |
| parent | 189ec2fc60f8dbfb5b054174f0062b9baeb27ca3 (diff) | |
Merge pull request #4068 from jepler/update-protomatter-tiling
protomatter: Update to version that supports tiling
Diffstat (limited to 'shared-bindings/rgbmatrix/RGBMatrix.h')
| -rw-r--r-- | shared-bindings/rgbmatrix/RGBMatrix.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shared-bindings/rgbmatrix/RGBMatrix.h b/shared-bindings/rgbmatrix/RGBMatrix.h index bfe37c340..4eb3c04b2 100644 --- a/shared-bindings/rgbmatrix/RGBMatrix.h +++ b/shared-bindings/rgbmatrix/RGBMatrix.h @@ -31,7 +31,7 @@ extern const mp_obj_type_t rgbmatrix_RGBMatrix_type; -void common_hal_rgbmatrix_rgbmatrix_construct(rgbmatrix_rgbmatrix_obj_t* self, int width, int bit_depth, uint8_t rgb_count, uint8_t* rgb_pins, uint8_t addr_count, uint8_t* addr_pins, uint8_t clock_pin, uint8_t latch_pin, uint8_t oe_pin, bool doublebuffer, mp_obj_t framebuffer, void* timer); +void common_hal_rgbmatrix_rgbmatrix_construct(rgbmatrix_rgbmatrix_obj_t* self, int width, int bit_depth, uint8_t rgb_count, uint8_t* rgb_pins, uint8_t addr_count, uint8_t* addr_pins, uint8_t clock_pin, uint8_t latch_pin, uint8_t oe_pin, bool doublebuffer, mp_obj_t framebuffer, int8_t tile, bool serpentine, void* timer); void common_hal_rgbmatrix_rgbmatrix_deinit(rgbmatrix_rgbmatrix_obj_t*); void rgbmatrix_rgbmatrix_collect_ptrs(rgbmatrix_rgbmatrix_obj_t*); void common_hal_rgbmatrix_rgbmatrix_reconstruct(rgbmatrix_rgbmatrix_obj_t* self, mp_obj_t framebuffer); |
