Toggle a LED light on the LED screen, meaning to turn it on (off) if it is off (on). Specify which LED using x, y coordinates.
led.toggle(0,0)
If a parameter is out of bounds (a value other than 0-4), then this function will do nothing.
The LED screen is made up of 25 LEDs arranged in a 5x5 grid. To figure out the x
, y
coordinates, see LED screen.
This code toggles the centre LED:
led.toggle(2, 2)
toggle all, plot, unplot, point, LED screen,