leds-trigger-pattern.txt 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. * Pattern format for LED pattern trigger
  2. The pattern is given by a series of tuples, of brightness and duration (ms).
  3. The LED is expected to traverse the series and each brightness value for the
  4. specified duration. Duration of 0 means brightness should immediately change to
  5. new value, and writing malformed pattern deactivates any active one.
  6. 1. For gradual dimming, the dimming interval now is set as 50 milliseconds. So
  7. the tuple with duration less than dimming interval (50ms) is treated as a step
  8. change of brightness, i.e. the subsequent brightness will be applied without
  9. adding intervening dimming intervals.
  10. The gradual dimming format of the software pattern values should be:
  11. "brightness_1 duration_1 brightness_2 duration_2 brightness_3 duration_3 ...".
  12. For example (using sysfs interface):
  13. echo 0 1000 255 2000 > pattern
  14. It will make the LED go gradually from zero-intensity to max (255) intensity in
  15. 1000 milliseconds, then back to zero intensity in 2000 milliseconds:
  16. LED brightness
  17. ^
  18. 255-| / \ / \ /
  19. | / \ / \ /
  20. | / \ / \ /
  21. | / \ / \ /
  22. 0-| / \/ \/
  23. +---0----1----2----3----4----5----6------------> time (s)
  24. 2. To make the LED go instantly from one brightness value to another, we should
  25. use zero-time lengths (the brightness must be same as the previous tuple's). So
  26. the format should be: "brightness_1 duration_1 brightness_1 0 brightness_2
  27. duration_2 brightness_2 0 ...".
  28. For example (using sysfs interface):
  29. echo 0 1000 0 0 255 2000 255 0 > pattern
  30. It will make the LED stay off for one second, then stay at max brightness for
  31. two seconds:
  32. LED brightness
  33. ^
  34. 255-| +---------+ +---------+
  35. | | | | |
  36. | | | | |
  37. | | | | |
  38. 0-| -----+ +----+ +----
  39. +---0----1----2----3----4----5----6------------> time (s)