Hi developers,
I discovered PostLEDMessage() function, which give us flexible LED contol for all cams (or course, OS must be running).
int PostLEDMessage(struct led_control *);
struct led_control {int led_num; int action; int brightness; int blink_count;}
where:
led_num: LED number (example for A710 see below)
action: 0 - LED on, 1- LED off, 2 or more - blinking with different speed
brightness: 0..255 for PWM controlled LEDs, any value - for others
blink_count -

return value: unknown.
No 0xC022.... addresses or UniqueLedOn(Off) required.
led_num for A710:
0: green (near viewfinder, at top)
1: orange (near viewfinder, at top)
2: yellow (near viewfinder, at bottom)
3: power
8: blue
9,10,11: AF (wow, now I can control it!)
edit: parameters updated.