diff options
| author | Jeff Epler <jepler@gmail.com> | 2020-04-19 09:10:08 -0500 |
|---|---|---|
| committer | Jeff Epler <jepler@gmail.com> | 2020-04-19 09:10:08 -0500 |
| commit | 898c09c35e994402ae0bafb25dba5ba284838a82 (patch) | |
| tree | f3f3c87e5acf90e4b171ebf27858e7994f07cb4d /shared-bindings | |
| parent | b4c1b355bb621c0b1e9980d2d83262327bd001f8 (diff) | |
RGBMatrix: nonessential change to kick Actions
Diffstat (limited to 'shared-bindings')
| -rw-r--r-- | shared-bindings/rgbmatrix/RGBMatrix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shared-bindings/rgbmatrix/RGBMatrix.c b/shared-bindings/rgbmatrix/RGBMatrix.c index af8905328..d758774d9 100644 --- a/shared-bindings/rgbmatrix/RGBMatrix.c +++ b/shared-bindings/rgbmatrix/RGBMatrix.c @@ -284,7 +284,7 @@ STATIC mp_obj_t rgbmatrix_rgbmatrix_set_brightness(mp_obj_t self_in, mp_obj_t va if (brightness < 0.0f || brightness > 1.0f) { mp_raise_ValueError(translate("Brightness must be 0-1.0")); } - common_hal_rgbmatrix_rgbmatrix_set_paused(self_in, brightness <= 0); + common_hal_rgbmatrix_rgbmatrix_set_paused(self, brightness <= 0); return mp_const_none; } |
