Notices


Reply
Thread Tools
noobmonkey's Avatar
Posts: 3,203 | Thanked: 1,391 times | Joined on Nov 2009 @ Worthing, England
#221
hehe yup - i think the earlier idea of testing channels is a good one - so a left and right channel test for the speakers
Headphone/headset test is a good one too

Mic - i'm not sure on will investigate it though
__________________
----------- Follow me on Twitter here
----------- My Photography Website and Blog is here
----------- Author of the N900 Health Check Application ----------- New Version in Extras Devel (Dec 2010 - 2.9.10)
----------- Are you on the N900 World Map? - http://pininthemap.com/maemo - masterpin: shotgun
----------- What apps do you want to see on the n900 or in MeeGo in the future? -
 
noobmonkey's Avatar
Posts: 3,203 | Thanked: 1,391 times | Joined on Nov 2009 @ Worthing, England
#222
Originally Posted by Mazi View Post
possible to add system up time??
Mazi, just woken up, and realised i have already added it its on the first tab, scroll to the bottom
__________________
----------- Follow me on Twitter here
----------- My Photography Website and Blog is here
----------- Author of the N900 Health Check Application ----------- New Version in Extras Devel (Dec 2010 - 2.9.10)
----------- Are you on the N900 World Map? - http://pininthemap.com/maemo - masterpin: shotgun
----------- What apps do you want to see on the n900 or in MeeGo in the future? -
 

The Following User Says Thank You to noobmonkey For This Useful Post:
noobmonkey's Avatar
Posts: 3,203 | Thanked: 1,391 times | Joined on Nov 2009 @ Worthing, England
#223
V 0.5.2-4 - Going in to Extras-Devel
This one may cause a few issues -
Added a new dependency to test the speakers (Not audio channels yet, but does test mono + stereo)
Also - filled the tables to start the program (Empty values)
__________________
----------- Follow me on Twitter here
----------- My Photography Website and Blog is here
----------- Author of the N900 Health Check Application ----------- New Version in Extras Devel (Dec 2010 - 2.9.10)
----------- Are you on the N900 World Map? - http://pininthemap.com/maemo - masterpin: shotgun
----------- What apps do you want to see on the n900 or in MeeGo in the future? -
 
noobmonkey's Avatar
Posts: 3,203 | Thanked: 1,391 times | Joined on Nov 2009 @ Worthing, England
#224
no issues so far? take that as good news
__________________
----------- Follow me on Twitter here
----------- My Photography Website and Blog is here
----------- Author of the N900 Health Check Application ----------- New Version in Extras Devel (Dec 2010 - 2.9.10)
----------- Are you on the N900 World Map? - http://pininthemap.com/maemo - masterpin: shotgun
----------- What apps do you want to see on the n900 or in MeeGo in the future? -
 
mikec's Avatar
Posts: 1,366 | Thanked: 1,185 times | Joined on Jan 2006
#225
Originally Posted by noobmonkey View Post
V 0.5.2-4 - Going in to Extras-Devel
This one may cause a few issues -
Added a new dependency to test the speakers (Not audio channels yet, but does test mono + stereo)
Also - filled the tables to start the program (Empty values)
@noobmonkey

can you post your py call to play a sound please, thats my next stop on my adventure with PyQt
__________________
N900_Email_Options Wiki Page
 
noobmonkey's Avatar
Posts: 3,203 | Thanked: 1,391 times | Joined on Nov 2009 @ Worthing, England
#226
Originally Posted by mikec View Post
@noobmonkey

can you post your py call to play a sound please, thats my next stop on my adventure with PyQt
Stereo
Code:
        
        b = None
        b = os.popen('pacat --channels=2 /usr/share/sounds/ui-wake_up_tune.wav')
        b.close ()
For mono
Code:
  
        b = None
        b = os.popen('pacat --channels=1 /usr/share/sounds/ui-wake_up_tune.wav')
        b.close ()
Package depends on - pulseaudio-utils
__________________
----------- Follow me on Twitter here
----------- My Photography Website and Blog is here
----------- Author of the N900 Health Check Application ----------- New Version in Extras Devel (Dec 2010 - 2.9.10)
----------- Are you on the N900 World Map? - http://pininthemap.com/maemo - masterpin: shotgun
----------- What apps do you want to see on the n900 or in MeeGo in the future? -
 

The Following User Says Thank You to noobmonkey For This Useful Post:
Posts: 353 | Thanked: 263 times | Joined on Dec 2009 @ Finland
#227
Originally Posted by noobmonkey View Post
V0.5.2-1 - Built (Or will be in 2 minutes)

Added a safety message before reboot button works.
Repositioned tool buttons
added a notification box. Anyone know how to change the failed icon on this one?

Have tried all variants
Code:
 bus = dbus.SessionBus()
        proxy = bus.get_object('org.freedesktop.Notifications', '/org/freedesktop/Notifications')
        interface = dbus.Interface(proxy,dbus_interface='org.freedesktop.Notifications')
        interface.Notify('HealthCheck', 0, '/usr/share/icons/hicolor/scalable/hildon/healthcheck.png/healthcheck.png', 'Comms Tab', 'Finished Loading', [], {}, 2000)
I don't know if you have fixed this already, but perhaps the icon error has something to do with that extra /healthcheck.png in the Notify() function:
interface.Notify('HealthCheck', 0, '/usr/share/icons/hicolor/scalable/hildon/healthcheck.png/healthcheck.png', 'Comms Tab', 'Finished Loading', [], {}, 2000)
 

The Following User Says Thank You to TNiga For This Useful Post:
noobmonkey's Avatar
Posts: 3,203 | Thanked: 1,391 times | Joined on Nov 2009 @ Worthing, England
#228
Originally Posted by TNiga View Post
I don't know if you have fixed this already, but perhaps the icon error has something to do with that extra /healthcheck.png in the Notify() function:
interface.Notify('HealthCheck', 0, '/usr/share/icons/hicolor/scalable/hildon/healthcheck.png/healthcheck.png', 'Comms Tab', 'Finished Loading', [], {}, 2000)

not fixed it yet, but didnt work without the double part (Yes that was a mistake, hehe)
__________________
----------- Follow me on Twitter here
----------- My Photography Website and Blog is here
----------- Author of the N900 Health Check Application ----------- New Version in Extras Devel (Dec 2010 - 2.9.10)
----------- Are you on the N900 World Map? - http://pininthemap.com/maemo - masterpin: shotgun
----------- What apps do you want to see on the n900 or in MeeGo in the future? -
 
Posts: 353 | Thanked: 263 times | Joined on Dec 2009 @ Finland
#229
How about if you put just the name of the icon instead the full path and extension? In this case just 'healthcheck'. At least some system icon stuff works this way.
 

The Following User Says Thank You to TNiga For This Useful Post:
noobmonkey's Avatar
Posts: 3,203 | Thanked: 1,391 times | Joined on Nov 2009 @ Worthing, England
#230
Originally Posted by TNiga View Post
How about if you put just the name of the icon instead the full path and extension? In this case just 'healthcheck'. At least some system icon stuff works this way.
ooo not tried that - will give it a go
__________________
----------- Follow me on Twitter here
----------- My Photography Website and Blog is here
----------- Author of the N900 Health Check Application ----------- New Version in Extras Devel (Dec 2010 - 2.9.10)
----------- Are you on the N900 World Map? - http://pininthemap.com/maemo - masterpin: shotgun
----------- What apps do you want to see on the n900 or in MeeGo in the future? -
 
Reply

Tags
check, faulty, front camera, gps, hardware, healthcheck, test


 
Forum Jump


All times are GMT. The time now is 12:37.