Turns on the `Grove LED`_ at full power.
(self)
| 1183 | self.write(power) |
| 1184 | |
| 1185 | def light_max(self): |
| 1186 | """ |
| 1187 | Turns on the `Grove LED`_ at full power. |
| 1188 | |
| 1189 | """ |
| 1190 | max_power = 100 |
| 1191 | self.light_on(max_power) |
| 1192 | |
| 1193 | def light_off(self): |
| 1194 | """ |
no test coverage detected