#include #define PIN 10 // 信号用のピンを指定 #define NUMPIXELS 7 // LEDの数を指定 int brightness=50;//明るさ Adafruit_NeoPixel pixels(NUMPIXELS, PIN, NEO_GRB + NEO_KHZ800); void setup() { Serial.begin(9600); pixels.begin(); // NeoPixel出力ピンの初期化S pixels.setBrightness(brightness); } void loop() { // read the input on analog pin 0: int sensorValue = analogRead(A0); int temp = map(sensorValue,2600,2800,0,255); if(temp < 0)temp = 0; if(temp > 255)temp = 255; // print out the value you read: Serial.println(sensorValue); pixels.clear(); // すべてのLEDの色を0にセット for(int i=0; i