| 注册
请输入搜索内容

热门搜索

Java Linux MySQL PHP JavaScript Hibernate jQuery Nginx
jopen
10年前发布

使用Celluloid的Ruby机器人框架:artoo

Artoo是一个使用Rub开发的机器人微框架。Artoo为机器人和物理计算提供了一个简单,但功能强大的领域特定语言(DSL)。

示例:

Basic

Arduino with an LED and a button, using the Firmata protocol.
require 'artoo'    connection :arduino, :adaptor => :firmata, :port => '/dev/ttyACM0'  device :led, :driver => :led, :pin => 13  device :button, :driver => :button, :pin => 2    work do    on button, :push => proc {led.toggle}  end

项目主页:http://www.open-open.com/lib/view/home/1421395654687

 本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
 转载本站原创文章,请注明出处,并保留原始链接、图片水印。
 本站是一个以用户分享为主的开源技术平台,欢迎各类分享!
 本文地址:https://www.open-open.com/lib/view/open1421395654687.html
Ruby开发 Artoo