2016-03-26 00:47:20 +01:00
# Plot
2016-04-13 17:27:45 +02:00
Turn on a LED light on the [LED screen ](/device/screen ). Specify which LED using x, y coordinates. Use [unplot ](/reference/led/unplot ) to turn a LED off.
2016-03-26 00:47:20 +01:00
```sig
led.plot(0,0);
```
### Parameters
2016-04-13 17:27:45 +02:00
* x - [Number ](/reference/types/number ); the *x coordinate* or horizontal position (0, 1, 2, 3, 4)
* y - [Number ](/reference/types/number ); the *y coordinate* or vertical position (0, 1, 2, 3, 4)
2016-03-26 00:47:20 +01:00
2016-04-13 17:27:45 +02:00
If a parameter is [out of bounds ](/reference/out-of-bounds ) (a value other than 0-4), then this function will do nothing.
2016-03-26 00:47:20 +01:00
### x, y coordinates?
2016-04-13 17:27:45 +02:00
The LED screen is made up of 25 LEDs arranged in a 5x5 grid. To figure out the ``x``, ``y`` coordinates, see [LED screen ](/device/screen ).
2016-03-26 00:47:20 +01:00
This code turns on the centre LED:
```blocks
led.plot(2, 2)
```
### Get the LED on/off state
2016-04-13 17:27:45 +02:00
Use the [point ](/reference/led/point ) function to find out if a LED is on or off.
2016-03-26 00:47:20 +01:00
### Example: a square
2016-04-13 17:27:45 +02:00
The following example uses a [for loop ](/reference/loops/for ) and the `plot` function to turn on the LED lights along the edge of the screen, making a square:
2016-03-26 00:47:20 +01:00
```blocks
for (let i = 0; i < 5 ; i + + ) {
led.plot(0, i)
led.plot(4, i)
led.plot(i, 0)
led.plot(i, 4)
basic.pause(500)
}
```
### Lessons
2016-04-13 17:27:45 +02:00
[blink ](/lessons/blink ), [beautiful image ](/lessons/beautiful-image ), [strobe light ](/lessons/strobe-light )
2016-03-26 00:47:20 +01:00
### See also
2016-04-13 17:27:45 +02:00
[unplot ](/reference/led/unplot ), [point ](/reference/led/point ), [LED screen ](/device/screen )
2016-03-26 00:47:20 +01:00