///
 /// \brief Restores the power system
 ///
 /// \return Returns the total amount of used power
 ///
 /// \details sets the power level of each room back to the stored value
 ///
 int _restore()
 {
     rooms.restart();
     return(rooms.total());
 }