정보나눔

오픈소스하드웨어 프로젝트에 대한 다양한 정보를 나누는 공간입니다.

아두이노 테트리스 소스코드 오류
로딩실패 | 2018-01-16

#include <LiquidCrystal.h>
#include <SPI.h>
#include "Tetris.h"
#define SS_PIN 10


void setup() {
  // put your setup code here, to run once:
  lcd.begin(16, 2);
  lcd.print("   Score: 0");
  Serial.begin(9600);
  randomSeed(analogRead(0));
  while (!Serial) {
    ; // wait for serial port to connect. Needed for native USB port only
  }
  Serial.println("Loading ...");
  Dp_Init();
  Te_Init();
  Serial.println(random(9, 15) * (10 + pow(3,1) * 10));
  Serial.println(random(9, 15) * (10 + pow(3,2) * 10));
  Serial.println(random(9, 15) * (10 + pow(3,3) * 10));
  Serial.println(random(9, 15) * (10 + pow(3,4) * 10));
}

 

byte xC = 0;
byte yC = 0;
long frameCount = 0;

void loop() {
  // put your main code here, to run repeatedly:
  frameCount++;
  Te_Draw();
  Te_Update(frameCount);
  delay(1);
}

 

 

 

이런 오류가 뜨면서 안돼요 ㅠㅠ 이거 어떻게 하나요? 

In file included from sketch\Stone.h:1:0,

                 from sketch\Tetris.h:1,

                 from C:\Users\HP\Desktop\kocoafab_project_669\kocoafab_project_669\kocoafab_project_669.ino:3:

sketch\Display.h:1:53: fatal error: C:\Program Files (x86)\Arduino\hardware\arduino\avr\cores\arduino/LiquidCrystal.h>http: Invalid argument

 #include <LiquidCrystal.h>https://create.arduino.cc/

                                                     ^

compilation terminated.

exit status 1
보드 Arduino/Genuino Uno 컴파일 에러.

이전글   |    Fritzing.exe에서 "모터 드라이버 모듈" 부품 추가하기... 2018-01-11
다음글   |    서보모터 21개 움직이기 2018-01-16