HA service to control individual pixels on adressable LEd

Hello, I have an esphome with neopixels adressable leds. I would like to control a single pixel of my led strip directly through a home assistant service.

service: light.turn_on
data:
  entity_id: light.adressable_led
  color: green
  pixel: 5
  brightness_pct: 100

A service similar to thisone.
Does anyone knows if the parameter exists in any form?

Maybe

Hello, thanks for you feedback :slight_smile: I would like to transform my strip into a vector where i is the parameter/number of the adressable to light up. I know I could theoretically use partition but my final use case is to be able to add a function to turn specific led at specific times.
If anyone as any other ideas?