정보나눔

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

네오픽셀 연결 오류
벽돌기부왕 | 2018-10-25

1. 프로젝트 사용한 보드 종류

아두이노 UNO

 

2. 사용한 개발 프로그램명

아두이노 IDE

 

3. 사용한 센서 모델명

  네오픽셀 매트릭스 형태(8*8)

 

4. 연결한 회로 설명 (또는 이미지)

설명서 참고하여 알맞은 핀에 연결했는데 왜이럴까요오,,,

 

 

5. 소스코드 (주석 필수)

adafruit에서 제공하는 예제 파일 라이브러리에 저장하고 그대로 컴파일했는데 에러가 뜹니다..!ㅠㅠ

// NeoPixel Ring simple sketch (c) 2013 Shae Erisson
// released under the GPLv3 license to match the rest of the AdaFruit NeoPixel library

#include <Adafruit_NeoPixel.h>
#ifdef __AVR__
  #include <avr/power.h>
#endif

// Which pin on the Arduino is connected to the NeoPixels?
// On a Trinket or Gemma we suggest changing this to 1
#define PIN            6

// How many NeoPixels are attached to the Arduino?
#define NUMPIXELS      16

// When we setup the NeoPixel library, we tell it how many pixels, and which pin to use to send signals.
// Note that for older NeoPixel strips you might need to change the third parameter--see the strandtest
// example for more information on possible values.
Adafruit_NeoPixel pixels = Adafruit_NeoPixel(NUMPIXELS, PIN, NEO_GRB + NEO_KHZ800);

int delayval = 500; // delay for half a second

void setup() {
  // This is for Trinket 5V 16MHz, you can remove these three lines if you are not using a Trinket
#if defined (__AVR_ATtiny85__)
  if (F_CPU == 16000000) clock_prescale_set(clock_div_1);
#endif
  // End of trinket special code

  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.setPixelColor(i, pixels.Color(0,150,0)); // Moderately bright green color.

    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