up vote 1 down vote favorite
1
share [g+] share [fb]

How can I get the current battery level using the cocoa framework running with Leopard?

Currently I am getting it running a NSTask with:

pmset -g ps | grep -o -e [0-9]*% | sed -e 's/%//g'

But i think this is a clumsy way of doing this.

Thanks

link|improve this question

62% accept rate
feedback

2 Answers

up vote 4 down vote accepted

I believe this question has been asked here before... Here's some links:

http://stackoverflow.com/questions/272552/battery-status-in-osx (asked here before)

It limited my number of links because I'm new... but you should find more links there

link|improve this answer
Here is a full working example (for iPhone): blog.coriolis.ch/2009/02/14/… Also, you could try here: developer.apple.com/documentation/Darwin/Reference/IOKit/… – micmoo Jun 22 '09 at 2:29
I tried those, but I always get this error: pastebin.com/m3f72274c – simao Jun 22 '09 at 3:19
I forgot to add IOKit.framework to my build path. Now it's working. Thanks – simao Jun 22 '09 at 3:55
No problem! Glad I could help :) – micmoo Jun 22 '09 at 3:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.