mirror of
https://github.com/Hopiu/rpi-rgb-led-matrix.git
synced 2026-05-21 21:31:52 +00:00
11 lines
252 B
Cython
11 lines
252 B
Cython
|
|
cimport cppinc
|
||
|
|
|
||
|
|
cdef class Canvas:
|
||
|
|
cdef cppinc.Canvas *__getCanvas(self) except +
|
||
|
|
|
||
|
|
cdef class FrameCanvas(Canvas):
|
||
|
|
cdef cppinc.FrameCanvas *__canvas
|
||
|
|
|
||
|
|
cdef class RGBMatrix(Canvas):
|
||
|
|
cdef cppinc.RGBMatrix *__matrix
|
||
|
|
cdef cppinc.GPIO *__gpio
|