We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Just noticed that my processing app tends to be listed as an app using significant energy on the mac (Along with bt backup!, crap programmers)
so, does anyone have any good tips for processing for reducing battery usage?
Answers
Anything that finishes faster will use less energy; code that finishes in 0.5 seconds takes more energy than code that finishes in 0.05 seconds.
Check for something that loops a lot (note that draw() loops a lot unless you specifically tell it not to with noLoop() ).
There are also hardware-type energy conservation tricks; use dark colours, use quiet or no sounds, don't probe the internet continuously, etc. (if your phone is listing your program as having high energy usage, these are likely not your problem, but still)