OS/Arduino
블루이노(BlueInno)
파란크리스마스
2016. 12. 13. 00:47
728x90
출처 : arduino IDE (1.6.9) 최신판 Windows 사용자 설치 방법 (아두이노+ 블루투스 = 블루이노(BlueInno)) |작성자 빌리
Blueinno2 보드 추가
[추가적인 보드 매니저 URLs]에 URL 설정
URL : https://github.com/blueinno/blueinno2.archive/raw/master/package_blueinno2_102_index.json
Hello World
// test code for sending keystrokes from arduino // to computer via HID bluetooth module void setup() { Serial.begin(115200); // begin serial communication at 115200 baud rate } void loop() { Serial.println("hello world"); // write hello world delay(1000); // delay one second }
컴파일
실행결과