코코아팹은 누구나 창의적 아이디어를 현실로 만들어 낼 수 있도록
만들고, 공유하고, 배울 수 있는 터전이
되고자 합니다.
아이디와 비밀번호를 잊으셨나요?아이디 / 비밀번호 찾기
코코아팹 회원이 아니신가요? 회원가입
네오픽셀 연결 오류
벽돌기부왕 | 2018-10-25
|
|
---|---|
1. 프로젝트 사용한 보드 종류 아두이노 UNO
2. 사용한 개발 프로그램명 아두이노 IDE
3. 사용한 센서 모델명 네오픽셀 매트릭스 형태(8*8)
4. 연결한 회로 설명 (또는 이미지) 설명서 참고하여 알맞은 핀에 연결했는데 왜이럴까요오,,,
5. 소스코드 (주석 필수) adafruit에서 제공하는 예제 파일 라이브러리에 저장하고 그대로 컴파일했는데 에러가 뜹니다..!ㅠㅠ // NeoPixel Ring simple sketch (c) 2013 Shae Erisson #include <Adafruit_NeoPixel.h> // Which pin on the Arduino is connected to the NeoPixels? // How many NeoPixels are attached to the Arduino? // When we setup the NeoPixel library, we tell it how many pixels, and which pin to use to send signals. int delayval = 500; // delay for half a second void setup() { pixels.begin(); // This initializes the NeoPixel library. void loop() { // For a set of NeoPixels the first NeoPixel is 0, second is 1, all the way up to the count of pixels minus one. for(int i=0;i<NUMPIXELS;i++){ // pixels.Color takes RGB values, from 0,0,0 up to 255,255,255 pixels.show(); // This sends the updated pixel color to the hardware. delay(delayval); // Delay for a period of time (in milliseconds). }
6. 문제점 및 에러 내용 아래와 같이 에러가 뜨는데요 이게 하드웨어 연결이 제대로 안되어 그런건지 라이브러리에 저장이 잘못된건지 모르겠어 질문 올려요 ㅠㅠㅠ 예제부터 에러가 나니까 당황해서 다음단계로 못나가고 있어요 도와주세요 엉엉 ㅠㅗㅠ
|
|
이전글 | 아두이노 코드 조언 부탁드립니다. | 2018-10-24 |
다음글 | 코코아팹 궁금증 | 2018-10-25 |