Advertisement
theexel

LED Support FAQ

Apr 1st, 2011
1,954
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.95 KB | None | 0 0
  1. LED Support FAQ
  2.  
  3. Q: Do LED notification require an app, such as BLN, etc ?
  4. A: No. It uses Android's and Cyanogen settings, other apps are not required, although some that are designed for regular LEDs may work.
  5.  
  6. Q: How to I turn off LED notifications, scheduled or/and complete turn off?
  7. A: Use Cyanogen's Quiet Hours feature (settings>cyanogen>sound>quiet hours) and check "Dim the LEDs during quiet hours" (in reality it will turn them off on the SGS). If you schedule a complete day, then LED notifications will be off all the time.
  8.  
  9. Q: How do I setup per app, find other LED settings etc?
  10. A: Settings>cyanogen>interface>LED notifications
  11.  
  12. Q: What to do with LED color settings?
  13. A: We have only one color, so that doesn't work. Use Green as default setting. Some non-bright colors turn off notification, as it's the equivalent as diming LEDs (note that on real LEDs if you dim them too much they look like off too anyway, the difference is that it's gradual. On the SGS the LEDs can be only on or off, not gradual)
  14.  
  15. Q: How can I troubleshot my system, I can use ADB but...
  16. A: adb logcat | grep lights (on linux) will show you Android requests to turn LED on or off. "status" tells you what we decide will be interpreted as "turn LED on" (1= on, 0 = off)
  17. adb shell cat /proc/kmsg for live view (or adb shell dmesg if you're using adb after the issues occurs - careful the backlog is limited in size so don't be too slow)
  18. notify_led_on and notify_led_off are requests to the kernel to turn LED on or off.
  19. touch key write/read errors (cypress) are non-fatal failures to ask the touch key to do something (eg lit up the LED), when the hardware goes crazy or there's a logical error in the code (can be both)
  20. touch key recovery routine or "stopped responding" are either hardware errors, either a logical error where the driver would try to write something the touchkey doesnt understand. in some occasion lock&unlock fix those as a work around, of course a permanent fix is required
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement