![]() |
2007-12-21
, 01:01
|
Posts: 88 |
Thanked: 15 times |
Joined on Jun 2007
|
#1
|
![]() |
2007-12-21
, 01:16
|
Posts: 662 |
Thanked: 238 times |
Joined on Jul 2007
|
#2
|
![]() |
2007-12-21
, 01:21
|
Posts: 88 |
Thanked: 15 times |
Joined on Jun 2007
|
#3
|
The Following User Says Thank You to jgallen23 For This Useful Post: | ||
![]() |
2007-12-21
, 04:51
|
|
Posts: 469 |
Thanked: 88 times |
Joined on Sep 2007
@ Montana
|
#4
|
![]() |
2007-12-22
, 02:57
|
Posts: 662 |
Thanked: 238 times |
Joined on Jul 2007
|
#5
|
#!/usr/bin/python2.5
import osso
import gobject
# Example of using osso.DeviceState.display_state_on
# You need to set the display brightness period to 10 seconds.
# This example will bright the display after each 11 seconds.
count = 0
def blink_cb(device, loop):
global count
device.display_state_on()
count += 1
if count == 5:
loop.quit()
return False
return True
def main():
global count
loop = gobject.MainLoop()
osso_c = osso.Context("osso_test_device_on", "0.0.1", False)
device = osso.DeviceState(osso_c)
gobject.timeout_add(11000, blink_cb, device, loop)
loop.run()
if __name__ == "__main__":
main()
![]() |
2009-11-22
, 09:52
|
Posts: 1 |
Thanked: 3 times |
Joined on Nov 2009
|
#6
|
The Following 3 Users Say Thank You to Informatic For This Useful Post: | ||
![]() |
2009-11-22
, 09:56
|
|
Posts: 4,274 |
Thanked: 5,358 times |
Joined on Sep 2007
@ Looking at y'all and sighing
|
#7
|
The Following 4 Users Say Thank You to qwerty12 For This Useful Post: | ||
![]() |
2009-11-29
, 17:23
|
Posts: 160 |
Thanked: 85 times |
Joined on Jan 2009
@ Greece-Athens
|
#8
|
/me swears by http://sse2.net/ledcolor.py