Class: Aric::Job::Volume

Inherits:
Base
  • Object
show all
Defined in:
lib/aric/job/volume.rb

Instance Method Summary collapse

Methods inherited from Base

run

Instance Method Details

#down(v = 5) ⇒ Object



10
11
12
# File 'lib/aric/job/volume.rb', line 10

def down(v = 5)
  run(:down, v)
end

#muteObject



14
15
16
# File 'lib/aric/job/volume.rb', line 14

def mute
  run(:mute)
end

#unmuteObject



18
19
20
# File 'lib/aric/job/volume.rb', line 18

def unmute
  run(:unmute)
end

#up(v = 5) ⇒ Object



6
7
8
# File 'lib/aric/job/volume.rb', line 6

def up(v = 5)
  run(:up, v)
end