class ENZI::LED

LEDクラス

enziボードに実装されているLEDのデバイスクラス

SAMPLE

LED.on
LED.off

Public Class Methods

off() click to toggle source
LED消灯
LEDを消灯する。

Args

Return

nil

Exception

# File enzi-lib.rb, line 191
def self.off
  low
end
on() click to toggle source
LED点灯
LEDを点灯する。

Args

Return

nil

Exception

# File enzi-lib.rb, line 181
def self.on
  high
end