Sha256: 61ecfb205afa99a4716beb9d10fab190fa908ea57dd73cb92ec4df1344227557
Contents?: true
Size: 549 Bytes
Versions: 34
Compression:
Stored size: 549 Bytes
Contents
# -*- coding: utf-8 -*- module RubyToBlock module Block class HardwareRgbLedTurnOff < CharacterMethodCall # rubocop:disable LineLength blocknize '^\s*' + CHAR_RE + 'rgb_led_(anode|cathode)\("(D[39])"\)\.turn_off\s*$', statement: true # rubocop:enable LineLength def self.process_match_data(md, context) md2 = regexp.match(md[type]) block = new(fields: { AC: md2[2], PIN: md2[3] }) add_character_method_call_block(context, md2[1], block) true end end end end
Version data entries
34 entries across 34 versions & 1 rubygems