3
    /*
  Button

 Turns on and off a light emitting diode(LED) connected to digital  
 pin 13, when pressing a pushbutton attached to pin 2. 


 The circuit:
 * LED attached from pin 13 to ground 
 * pushbutton attached to pin 2 from +5V
 * 10K resistor attached to pin 2 from ground

 * Note: on most Arduinos there is already an LED on the board
 attached to pin 13.


 created 2005
 by DojoDave <http://www.0j0.org>
 modified 30 Aug 2011
 by Tom Igoe

 This example code is in the public domain.

 http://www.arduino.cc/en/Tutorial/Button
 */

// set pin numbers:
const int buttonPin = 2;     // the number of the pushbutton pin
const int led =  11;      // the number of the LED pin

// variables will change:
int buttonState = 0;         // variable for reading the pushbutton status
int buttonHistory = 0;        //Counting variable for button being pressed

void setup() {
  // initialize the LED pin as an output:
  pinMode(led, OUTPUT);      
  // initialize the pushbutton pin as an input:
  pinMode(buttonPin, INPUT);     
}

void loop(){
  // read the state of the pushbutton value:
  buttonState = digitalRead(buttonPin);
  if (buttonState == HIGH){
    buttonState++;
  }

  // check if the pushbutton is pressed.
  // if it is, the buttonState is HIGH:
    if (buttonHistory >= 0 && buttonState >= 0) {  
      // turn LED on:;
      int x = x + (.1*255);
      analogWrite(led, x);  

    }
    else if (buttonState == LOW){
      analogWrite(led, 0);
    }

    if (buttonState == 11){
      buttonState = 0;
    }
    buttonHistory = buttonState;
}

上記のコードの一部は Arduino の Web サイトからコピーされたものですが、私はそれを編集しました。

上記は私のコードです。ここでの私の目標は、そのブレッドボードのボタンを押すと点灯するように、非はんだブレッドボードに抵抗器を備えた LED を作成することです。配線はすべて完了しており、LED は点灯しますが、ボタンを押しても点灯しません。ボタンを押すたびに LED が 10 パーセント明るくなり、最大の明るさになったら、次のボタンを押すとオフになります。私の問題は、現在、LED が常に点灯しており、ボタンを押しても何も起こらないことです。

4

1 に答える 1

5

LEDを Arduino のPWM出力の 1 つに接続する必要があります。

PWM 出力は 0 ~ 255 の値に設定できます。これは、その出力に電流を設定する値に比例した時間、残りの時間は 0 V になることを意味します。

LEDをフェードさせるには、Arduino の公式サイトで次の例を確認してください。

コード マッピング値を緩和するため、関数 mapも使用する必要があります。

あなたのコードについては、これを試すことができます(私はそれをコンパイルしていないので、間違いを許してください):

// Read the state of the pushbutton value, and update the fade LED value:
buttonState = digitalRead(buttonPin);
if (buttonState == HIGH){
    // buttonState++; Probably this was the main bug in your code.
    buttonHistory++;
}

// We are cycling buttonHistory, not buttonState
if (buttonHistory == 11){
    buttonHistory = 0;
}

//if (buttonHistory >= 0 && buttonState >= 0) {
  // Turn LED on at desired intensity:;
  int x = map(buttonHistory, 0, 10, 0, 255); // Similar to doing x=.1*255*buttonHistory
  analogWrite(led, x);

//}
// REDUNDANT:
//else if (buttonState == LOW){
//  analogWrite(led, 0);
//}

また、サイクル間で追加することも検討する必要がありますdelay()。そうしないと、LED の強度を更新するのが速すぎて気付かないことになります (呼び出しdigitalRead(buttonPin);が速すぎて何度も呼び出すことになります)。良い場所は「analogWrite()」の後である可能性があります(提案してくれた@mikeに感謝します):

analogWrite(led, x);
delay(500);
于 2012-09-14T16:38:29.280 に答える