Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

4 anos atrás
4 anos atrás
4 anos atrás
4 anos atrás
4 anos atrás
4 anos atrás
4 anos atrás
1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # PinePhone Toolkit (PPTK)
  2. A collection of tools and utility apps for the PINE64 PinePhone.
  3. ## Components
  4. ### backlight
  5. Get / Set display backlight brightness.
  6. ```
  7. $ pptk-backlight get
  8. 4
  9. $ pptk-backlight set 6
  10. ```
  11. ### led
  12. Get / Set LED light level for the RGB indicator and the white flash light.
  13. ```
  14. # Get red RGB indicator brightness
  15. $ pptk-led get red
  16. 255
  17. # Turn RED indicator OFF
  18. $ pptk-led set red 0
  19. # Turn FLASH light ON
  20. $ pptk-led set flash 255
  21. ```
  22. ### cpu-sleep
  23. Puts secondary CPUs to sleep to save energy. Wakes them up to gain more CPU power.
  24. ```
  25. $ pptk-cpu-sleep enable
  26. $ pptk-cpu-sleep get
  27. enabled
  28. $ pptk-cpu-sleep disable
  29. $ pptk-cpu-sleep get
  30. disabled
  31. ```
  32. ## Build & Install
  33. ```
  34. $ meson build
  35. $ cd build
  36. $ ninja
  37. $ sudo ninja install
  38. ```