Sha256: ad14957dc2199ff688a708f4214dfed5f9c30114a4e0013fad91adbcd22394a3

Contents?: true

Size: 433 Bytes

Versions: 1

Compression:

Stored size: 433 Bytes

Contents

require 'meac_control/command/generic'

module MEACControl
  module Command
    class FanSpeed < Generic

      def initialize
        @command = 'FanSpeed'
      end

      def low
        @value = 'low'
      end

      def mid1
        @value = 'mid1'
      end

      def mid2
        @value = 'mid2'
      end

      def high
        @value = 'high'
      end

      def auto
        @value = 'auto'
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
meac_control-1.0.0 lib/meac_control/command/fan_speed.rb