problem MACBOOK PRO Arduino Uno Rev.3 Mikrocontroller Board

hey das ist mein code

#include <Adafruit_NeoPixel.h>
#include <avr/power.h>

#define PIN 6

/*
GLOWBOARD CODE

Achtung! Du musst die Anzahl der LEDs anpassen. Bei mir waren es 68. Ändere die Variable ledsGesamt.
*/

int ledsGesamt = 60;



// Parameter 1 = number of pixels in strip
// Parameter 2 = Arduino pin number (most are valid)
// Parameter 3 = pixel type flags, add together as needed:
//   NEO_KHZ800  800 KHz bitstream (most NeoPixel products w/WS2812 LEDs)
//   NEO_KHZ400  400 KHz (classic 'v1' (not v2) FLORA pixels, WS2811 drivers)
//   NEO_GRB     Pixels are wired for GRB bitstream (most NeoPixel products)
//   NEO_RGB     Pixels are wired for RGB bitstream (v1 FLORA pixels, not v2)
Adafruit_NeoPixel strip = Adafruit_NeoPixel(ledsGesamt, PIN, NEO_GRB + NEO_KHZ800);

// IMPORTANT: To reduce NeoPixel burnout risk, add 1000 uF capacitor across
// pixel power leads, add 300 - 500 Ohm resistor on first pixel's data input
// and minimize distance between Arduino and first pixel.  Avoid connecting
// on a live circuit...if you must, connect GND first.

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


  strip.begin();
  strip.show(); // Initialize all pixels to 'off'
}

void loop() {
  // Some example procedures showing how to display to the pixels:
  colorWipe(strip.Color(255, 0, 0), 30); // Red
  colorWipe(strip.Color(0, 255, 0), 30); // Green
  colorWipe(strip.Color(0, 0, 255), 30); // Blue
  // Send a theater pixel chase in...
  theaterChase(strip.Color(127, 127, 127), 50); // White
  /*theaterChase(strip.Color(127,   0,   0), 50); // Red
  theaterChase(strip.Color(  0,   0, 127), 50); // Blue*/

/*  rainbow(10);*/
  rainbowCycle(5);
  theaterChaseRainbow(40);
}

// Fill the dots one after the other with a color
void colorWipe(uint32_t c, uint8_t wait) {
  for(uint16_t i=0; i<strip.numPixels()/2; i++) {
      strip.setPixelColor(i, c);
      strip.setPixelColor(strip.numPixels()-i, c);      
      strip.show();
      delay(wait);
  }
}

void rainbow(uint8_t wait) {
  uint16_t i, j;

  for(j=0; j<256; j++) {
    for(i=0; i<strip.numPixels()/2; i++) {
      strip.setPixelColor(i, Wheel((i+j) & 255));
      strip.setPixelColor(strip.numPixels()-i, Wheel((i+j) & 255));      
    }
    strip.show();
    delay(wait);
  }
}

// Slightly different, this makes the rainbow equally distributed throughout
void rainbowCycle(uint8_t wait) {
  uint16_t i, j;

  for(j=0; j<256*5; j++) { // 5 cycles of all colors on wheel
    for(i=0; i< strip.numPixels()/2; i++) {
      strip.setPixelColor(strip.numPixels()/2-i, Wheel(((i * 256 / strip.numPixels()) + j) & 255));
      strip.setPixelColor(strip.numPixels()/2+i, Wheel(((i * 256 / strip.numPixels()) + j) & 255));      
    }
    strip.show();
    delay(wait);
  }
}

//Theatre-style crawling lights.
void theaterChase(uint32_t c, uint8_t wait) {
  for (int j=0; j<40; j++) {  //do 10 cycles of chasing
    for (int q=0; q < 3; q++) {
      for (int i=0; i < strip.numPixels()/2; i=i+3) {
        strip.setPixelColor(i+q, c);    //turn every third pixel on
        strip.setPixelColor(strip.numPixels()-(i+q), c);    //turn every third pixel on        
      }
      strip.show();
     
      delay(wait);
     
      for (int i=0; i < strip.numPixels()/2; i=i+3) {
        strip.setPixelColor(i+q, 0);        //turn every third pixel off
        strip.setPixelColor(strip.numPixels()-(i+q), 0);        //turn every third pixel off        
      }
    }
  }
}

//Theatre-style crawling lights with rainbow effect
void theaterChaseRainbow(uint8_t wait) {
  for (int j=0; j < 256; j++) {     // cycle all 256 colors in the wheel
    for (int q=0; q < 3; q++) {
        for (int i=0; i < strip.numPixels()/2; i=i+3) {
          strip.setPixelColor(i+q, Wheel( (i+j) % 255));    //turn every third pixel on
          strip.setPixelColor(strip.numPixels()-(i+q), Wheel( (i+j) % 255));    //turn every third pixel on          
        }
        strip.show();
       
        delay(wait);
       
        for (int i=0; i < strip.numPixels()/2; i=i+3) {
          strip.setPixelColor(i+q, 0);        //turn every third pixel off
          strip.setPixelColor(strip.numPixels()-(i+q), 0);        //turn every third pixel off          
        }
    }
  }
}

// Input a value 0 to 255 to get a color value.
// The colours are a transition r - g - b - back to r.
uint32_t Wheel(byte WheelPos) {
  WheelPos = 255 - WheelPos;
  if(WheelPos < 85) {
   return strip.Color(255 - WheelPos * 3, 0, WheelPos * 3);
  } else if(WheelPos < 170) {
    WheelPos -= 85;
   return strip.Color(0, WheelPos * 3, 255 - WheelPos * 3);
  } else {
   WheelPos -= 170;
   return strip.Color(WheelPos * 3, 255 - WheelPos * 3, 0);
  }
}

hier ist mein error code

compilation terminated.
exit status 1
Fehler beim Kompilieren für das Board Arduino/Genuino Uno.

danke fürs helfen

apeandrefan:
hey das ist mein code
...
danke fürs helfen

Kannst du auch noch Angaben über den verwendeten Arduino machen ?

Vermutlich stimmt eine Einstellung nicht, bei mir kompiliert der Sketch für den Uno fehlerfrei.

das wäre das gerät habe es von Amazon bestellt und komme kein bisschen draus vielleicht hilft euch das ?

hast du die neopixel lib installiert?
schalte mal unter Datei, Voreinstellungen, ausführliche Ausgabe während Kompilierung ein.

ich habe neopixel installiert

also ardubu ich finde keine voreinstellungen, ausführliche ausgabe während kompilierung aus ich habe einen mac compi.

Und welche Version der IDE hast du ?

welche ide vom mac oder von neopixel wenn es von neopixel ist finde ich sie nicht

Die IDE ist das Programm in der du den Sketch schreibst, kompilierst und den Arduino flashst.
Davon die Version, die findest du auch in der Kopfzeile.

ide 1.8.2

apeandrefan:
ide 1.8.2

Dann solltest du im Menü unter Datei die Voreinstellungen finden und darin die besagten Einstellungen.

ich finde das nicht auf dem program habe unter Datei nur öffnen.., letztes öffnen, Stechbook, Beispiele, schliessen, speichern, Speicher unter..., Seite einrichten und drucken das kommt alles unter datei

Dann vermute ich die Installation war fehlerhaft.
Oder du soltest mal warten, bis ein MAC-User vorbeikommt.
Ergänze den Titel deines Threads mal mit dem Wort MAC-Problem o.ä.

Die Einstellungen sind im Menü "Arduino", nicht in "Datei"

dort finde ich auch nichts zu thema Kompilierung

mach mal einen Screenshot deines Einstellungs-Fensters

den screenshot

Hallo, da steht es doch oben drin: Ausführliche Ausgabe.... Kompilierung anhaken !

Edit:
Unter Windows steht das in "Datei".

aber es geht auch nicht wenn ich den hacken rein tun dann kommt immer noch der gleiche fehler

compilation terminated.
exit status 1
Fehler beim Kompilieren für das Board Arduino/Genuino Uno.

apeandrefan:
aber es geht auch nicht wenn ich den hacken rein tun dann kommt immer noch der gleiche fehler

compilation terminated.
exit status 1
Fehler beim Kompilieren für das Board Arduino/Genuino Uno.

Der Fehler wird dadurch auch nicht repariert.
Aber es sollten mehr Fehler angezeigt werden, damit wir deinen Fehler erkennen können.

Arduino: 1.8.2 (Mac OS X), Board: "Arduino/Genuino Uno"

/Users/Apecrime/Desktop/Arduino.app/Contents/Java/arduino-builder -dump-prefs -logger=machine -hardware /Users/Apecrime/Desktop/Arduino.app/Contents/Java/hardware -tools /Users/Apecrime/Desktop/Arduino.app/Contents/Java/tools-builder -tools /Users/Apecrime/Desktop/Arduino.app/Contents/Java/hardware/tools/avr -built-in-libraries /Users/Apecrime/Desktop/Arduino.app/Contents/Java/libraries -libraries /Users/Apecrime/Documents/Arduino/libraries -fqbn=arduino:avr:uno -vid-pid=0X2A03_0X0043 -ide-version=10802 -build-path /var/folders/vc/l2c15wjn4fx70_7j_hy1c0tw0000gn/T/arduino_build_321562 -warnings=none -build-cache /var/folders/vc/l2c15wjn4fx70_7j_hy1c0tw0000gn/T/arduino_cache_888199 -prefs=build.warn_data_percentage=75 -prefs=runtime.tools.arduinoOTA.path=/Users/Apecrime/Desktop/Arduino.app/Contents/Java/hardware/tools/avr -prefs=runtime.tools.avrdude.path=/Users/Apecrime/Desktop/Arduino.app/Contents/Java/hardware/tools/avr -prefs=runtime.tools.avr-gcc.path=/Users/Apecrime/Desktop/Arduino.app/Contents/Java/hardware/tools/avr -verbose /Users/Apecrime/Downloads/GlowBoard 2/GlowBoard/GlowBoard.ino
/Users/Apecrime/Desktop/Arduino.app/Contents/Java/arduino-builder -compile -logger=machine -hardware /Users/Apecrime/Desktop/Arduino.app/Contents/Java/hardware -tools /Users/Apecrime/Desktop/Arduino.app/Contents/Java/tools-builder -tools /Users/Apecrime/Desktop/Arduino.app/Contents/Java/hardware/tools/avr -built-in-libraries /Users/Apecrime/Desktop/Arduino.app/Contents/Java/libraries -libraries /Users/Apecrime/Documents/Arduino/libraries -fqbn=arduino:avr:uno -vid-pid=0X2A03_0X0043 -ide-version=10802 -build-path /var/folders/vc/l2c15wjn4fx70_7j_hy1c0tw0000gn/T/arduino_build_321562 -warnings=none -build-cache /var/folders/vc/l2c15wjn4fx70_7j_hy1c0tw0000gn/T/arduino_cache_888199 -prefs=build.warn_data_percentage=75 -prefs=runtime.tools.arduinoOTA.path=/Users/Apecrime/Desktop/Arduino.app/Contents/Java/hardware/tools/avr -prefs=runtime.tools.avrdude.path=/Users/Apecrime/Desktop/Arduino.app/Contents/Java/hardware/tools/avr -prefs=runtime.tools.avr-gcc.path=/Users/Apecrime/Desktop/Arduino.app/Contents/Java/hardware/tools/avr -verbose /Users/Apecrime/Downloads/GlowBoard 2/GlowBoard/GlowBoard.ino
Using board 'uno' from platform in folder: /Users/Apecrime/Desktop/Arduino.app/Contents/Java/hardware/arduino/avr
Using core 'arduino' from platform in folder: /Users/Apecrime/Desktop/Arduino.app/Contents/Java/hardware/arduino/avr
Detecting libraries used...
"/Users/Apecrime/Desktop/Arduino.app/Contents/Java/hardware/tools/avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10802 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-I/Users/Apecrime/Desktop/Arduino.app/Contents/Java/hardware/arduino/avr/cores/arduino" "-I/Users/Apecrime/Desktop/Arduino.app/Contents/Java/hardware/arduino/avr/variants/standard" "/var/folders/vc/l2c15wjn4fx70_7j_hy1c0tw0000gn/T/arduino_build_321562/sketch/GlowBoard.ino.cpp" -o "/dev/null"
"/Users/Apecrime/Desktop/Arduino.app/Contents/Java/hardware/tools/avr/bin/avr-g++" -c -g -Os -w -std=gnu++11 -fpermissive -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -flto -w -x c++ -E -CC -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=10802 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR "-I/Users/Apecrime/Desktop/Arduino.app/Contents/Java/hardware/arduino/avr/cores/arduino" "-I/Users/Apecrime/Desktop/Arduino.app/Contents/Java/hardware/arduino/avr/variants/standard" "/var/folders/vc/l2c15wjn4fx70_7j_hy1c0tw0000gn/T/arduino_build_321562/sketch/GlowBoard.ino.cpp" -o "/var/folders/vc/l2c15wjn4fx70_7j_hy1c0tw0000gn/T/arduino_build_321562/preproc/ctags_target_for_gcc_minus_e.cpp"
/Users/Apecrime/Downloads/GlowBoard 2/GlowBoard/GlowBoard.ino:1:31: fatal error: Adafruit_NeoPixel.h: No such file or directory
#include <Adafruit_NeoPixel.h>
^
compilation terminated.
exit status 1
Fehler beim Kompilieren für das Board Arduino/Genuino Uno.

das kommt wenn ich auf den knopf drücke