isHeaterOn method

bool isHeaterOn()

Checks if the heater is on.

Implementation

bool isHeaterOn() {
  return (getStatus() & 0x2000) != 0;
}