동영상으로 확인하기
아두이노 소스 1 |
#define _BT Serial #include "D:\\myHeader\\Display.H" Display hp; int cx,cy; void setup() { hp.begin(); hp.echo(); hp.clear(); cx=hp.width()/2; cy=hp.height()/2; } void loop() { hp.color(White); for( int r=0; r<150 ;r+=3) { hp.circle(cx,cy,r,false); hp.echo(); } hp.color(Green); for( int r=0; r<150 ;r+=3) { hp.circle(cx,cy,r,false); hp.echo(); } } |
아두이노 소스 2 |
#define _BT Serial #include "D:\\myHeader\\Display.H" Display hp; int cx,cy; void setup() { hp.begin(); hp.echo(); hp.clear(); cx=hp.width()/2; cy=hp.height()/2; } void loop() { hp.color(White); for( int r=0; r<150 ;r+=3) { hp.circle(cx,cy,r,false); hp.echo(); } hp.color(Green); for( int r=0; r<150 ;r+=3) { hp.circle(cx,cy,r,false); } hp.echo(); } |
'프로젝트 > 휴대폰을 디스플레이로 활용하기' 카테고리의 다른 글
다중 디스플레이, 수학좌표 기능추가와 사용법이 간편해진 완전 개선판 (0) | 2022.09.05 |
---|---|
기능 개선판 아두이노 Bluetooth Display (0) | 2022.09.03 |
앱인벤트로 라이브러리에 대응하는 블럭 만들기. (0) | 2022.08.27 |
휴대폰 디스플레이 라이브러리 클래스 (0) | 2022.08.27 |
그래픽 시연 (0) | 2022.08.26 |