Sha256: a71e8eb8328567ba9e7ce636d369cb79281d137b66e0f2dc8264b44e63e50371

Contents?: true

Size: 1.33 KB

Versions: 2

Compression:

Stored size: 1.33 KB

Contents

module MonomeSerial
  module SerialCommunicator
    module BinaryPatterns
      module Fourtyh
        #please implement me
        #http://docs.monome.org/doku.php?id=tech:protocol:40h

        def led_on_pattern
          raise NotImplementedError, "please implement me"
        end

        def led_off_pattern
          raise NotImplementedError, "please implement me"
        end

        def x_y_coord_pattern(x,y)
          raise NotImplementedError, "please implement me"
        end

        def row_of_8_pattern(row)
          raise NotImplementedError, "please implement me"
        end

        def row_of_16_pattern(row)
          raise NotImplementedError, "please implement me"
        end

        def col_of_8_pattern(col)
          raise NotImplementedError, "please implement me"
        end

        def col_of_16_pattern(col)
          raise NotImplementedError, "please implement me"
        end

        def clear_pattern
          raise NotImplementedError, "please implement me"
        end

        def all_pattern
          raise NotImplementedError, "please implement me"
        end

        def frame_pattern(quadrant)
          raise NotImplementedError, "please implement me"
        end

        def brightness_pattern(brightness)
          raise NotImplementedError, "please implement me"
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
monome_serial-1.1.0 lib/monome_serial/serial_communicator/binary_patterns/fourtyh.rb
monome_serial-1.0.0 lib/monome_serial/serial_communicator/binary_patterns/fourtyh.rb