At application level, many times caching is overlooked: if you already have a fresh result, you don't have to recompute it. Less computation -> lower power consumption; also, usually less data transferred (-> lower power consumption - infinitesimal, but it adds up). Of course, caching logic has to be lighter than the computation itself, otherwise it defeats the purpose.
For example, in HTTP this can be done with conditional queries - yet rarely do you see it (it can be tricky to keep track of response freshness).
