Ruby를 사용한 편안한 Arduino 작업
설치하는 방법 ?
gem install Rubyino
git clone https://github.com/nimacpp/rubyino.git
cd rubyino
gem build rubyino.gemspec
gem install rubyino*.gem
루비노의 기능
먼저 include gem이 필요하고 다음과 같이 값을 설정해야 합니다.
require "Rubyino"
app = Rubyino.new("namefile")
이제 Rubyino로 작업할 수 있습니다.
Rubyino의 기능
지연(타이머 절전):
app.delay(500)
인쇄(인쇄 키보드) :
app.print "hello world"
엔터(엔터키) :
app.enter
창 또는 cmd 키 + 키 :
win_pls "r" # win+r
코드를 Arduino로 변환하려면 다음과 같은 기능
ter
이 필요합니다.app.ter
하나의 예는 다음을 알고 있습니다.
require "rubyino"
app = Rubyino.new("file")
app.delay(5000)
app.win_pls('r')
app.print "echo hello world"
app.enter
app.print "ls -a"
app.ter
그것을 저장하고 실행하십시오. 스크립트는 file.ino라는 파일을 생성합니다.
Arduino ide 프로그램으로 파일을 열고 업로드 버튼을 눌러 스크립트를 arduino에 업로드하십시오.
Reference
이 문제에 관하여(Ruby를 사용한 편안한 Arduino 작업), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/nimacpp/relaxing-arduinos-work-with-ruby-4cjh텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)