Module: MiOS::Services::WindowCovering1

Defined in:
lib/mios/services/window_covering1.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.extended(base) ⇒ Object



4
5
6
# File 'lib/mios/services/window_covering1.rb', line 4

def self.extended(base)
  base.instance_variable_set("@windowcovering1_urn", "urn:upnp-org:serviceId:WindowCovering1")
end

Instance Method Details

#down!(async = false, &block) ⇒ Object



12
13
14
# File 'lib/mios/services/window_covering1.rb', line 12

def down!(async=false, &block)
  set(@windowcovering1_urn, "Down", async, &block)
end

#stop!(async = false, &block) ⇒ Object



16
17
18
# File 'lib/mios/services/window_covering1.rb', line 16

def stop!(async=false, &block)
  set(@windowcovering1_urn, "Stop", async, &block)
end

#up!(async = false, &block) ⇒ Object



8
9
10
# File 'lib/mios/services/window_covering1.rb', line 8

def up!(async=false, &block)
  set(@windowcovering1_urn, "Up", async, &block)
end