Skip to content

Commit 397ef78

Browse files
authored
Merge pull request #640 from pimoroni/patch-plasma-make-new
Plasma: Swap make_new/print functions for WS2812 module.
2 parents db5004d + 6bf5c7f commit 397ef78

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

micropython/modules/plasma/plasma.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ MP_DEFINE_CONST_OBJ_TYPE(
6868
PlasmaWS2812_type,
6969
MP_QSTR_plasma_ws2812,
7070
MP_TYPE_FLAG_NONE,
71-
make_new, PlasmaWS2812_print,
72-
print, PlasmaWS2812_make_new,
71+
make_new, PlasmaWS2812_make_new,
72+
print, PlasmaWS2812_print,
7373
locals_dict, (mp_obj_dict_t*)&PlasmaWS2812_locals_dict
7474
);
7575
#else

0 commit comments

Comments
 (0)