Class: CheekyDreams::Effects::Cycle
- Defined in:
- lib/cheeky-dreams.rb
Constant Summary
Constants included from CheekyDreams
Instance Method Summary collapse
-
#initialize(colours, freq) ⇒ Cycle
constructor
A new instance of Cycle.
- #next(current_colour = nil) ⇒ Object
Methods included from CheekyDreams
#ansi_driver, #audit_to, #crazy, #cycle, #dev_null, #fade, #fade_to, #find_dream_cheeky_usb_device, #forward, #func, #light_show, #max, #off, #position_between, #rgb, #rgb_between, #sleep_until, #solid, #stdio_audit, #stdout_driver, #suppress_duplicates, #throb, #throbbing
Constructor Details
#initialize(colours, freq) ⇒ Cycle
Returns a new instance of Cycle.
335 336 337 |
# File 'lib/cheeky-dreams.rb', line 335 def initialize colours, freq @freq, @cycle = freq, colours.cycle end |
Instance Method Details
#next(current_colour = nil) ⇒ Object
339 340 341 |
# File 'lib/cheeky-dreams.rb', line 339 def next current_colour = nil [rgb(@cycle.next), @freq] end |