Sha256: abc39d5128b536759ab78bacd5a36f2df2b5896e6bd9349a1dc9ddfd3745b9bf
Contents?: true
Size: 465 Bytes
Versions: 35
Compression:
Stored size: 465 Bytes
Contents
# -*- coding: utf-8 -*- module RubyToBlock module Block class HardwareLedOff < CharacterMethodCall blocknize '^\s*' + CHAR_RE + 'led\("(D(?:[2-9]|1[0-3]))"\).off\s*$', statement: true def self.process_match_data(md, context) md2 = regexp.match(md[type]) add_character_method_call_block(context, md2[1], new(fields: { PIN: md2[2] })) true end end end end
Version data entries
35 entries across 35 versions & 1 rubygems