The DC input adaptor requires a 9V DC supply, which powers the onboard 5V and 3.3V regulators.what is use of adapter pin and what is rating 5V or 12V?
/*
Blink
Turns on an LED on for one second, then off for one second, repeatedly.
This example code is in the public domain.
*/
void setup() {
// initialize the digital pin as an output.
// Pin 13 has an LED connected on most Arduino boards:
pinMode(13, OUTPUT);
}
void loop() {
digitalWrite(13, HIGH); // set the LED on
delay(1000); // wait for a second
digitalWrite(13, LOW); // set the LED off
delay(1000); // wait for a second
}
The specification states:for pwm what to do??
so i have to connect 9V adaptor?
not 5V not 12V
Instead of peppering us with trivial questions, Ritesh, read the online documentation at the Arduino web site. Also, note that the Arduino web site has a discussion forum; you can-- and should-- ask your Arduino questions there.how to make pwm in it?