・Bleクラスライブリへのリンク  https://gist.github.com/mimaki/93950ab4f8b298cb90c7f911b8215671   ・コンパイルコマンド  Windows   c:\momo>mrbc -o autorun.mrb ble.rb  Mac   $ ./mrbc -o autorun.mrb ble.rb   ・実行コマンド > ble = BLE.new('mruby') => # ble.start_custom_service(8) => ["Reboot", "\000", "CMD"] > ble.chardata='Hello' => ["Hello"] > ・tempble.rb adt = ADT7410.new ble = BLE.new('BLE_MIMAKI_') ble.start_custom_service(8) loop { temp = adt.read puts temp ble.chardata = temp Plato::Machine.delay(2000) }