mirror of
https://github.com/Hopiu/rpi-rgb-led-matrix.git
synced 2026-04-20 23:01:01 +00:00
15 lines
295 B
Cython
15 lines
295 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
|
|
|
|
# Local Variables:
|
|
# mode: python
|
|
# End:
|