type:dehumidifier - Dehumidifers

Dehumidifiers are appliances that decrease the humidity of the air. Many dehumidifers will support switchable-power so that they can be switched on or off. Some implement switchable-mode to support different modes, such as switching between automatic and manual modes.

if(thing.matches('type:dehumidifier')) {
  // The thing is a dehumidifier
}

Implementing type

const { Dehumidifier } = require('abstract-things/climate');

class Example extends Dehumidifier.with(...) {

}