Funduino Duemilanove Development Board - Product
Place of Origin : Shenzhen,China
Delivery Time : 3-5 Workdays After Payment
Product Description
Funduino Duemilanove Development Board 2009 For Arduino Based On ATmega328
funduino duemilanove 2009 development board compatible ARDUINO
Description:
The Duemilanove Board Arduino is a microcontroller board based on the ATmega328. It has 14 digital input/output pins (of which 6 can be used as PWM outputs), 6 analog inputs, a 16 MHz crystal oscillator, a USB connection, a power jack, an ICSP header, and a reset button. It contains everything needed to support the microc
Physical Specification
Other Specification :
Funduino Duemilanove Development Board 2009 For Arduino Based On ATmega328
Funduino Duemilanove 2009 Development Board Compatible ARDUINO
Description:
The Duemilanove Board Arduino Is A Microcontroller Board Based On The ATmega328. It Has 14 Digital Input/output Pins (of Which 6 Can Be Used As PWM Outputs), 6 Analog Inputs, A 16 MHz Crystal Oscillator, A USB Connection, A Power Jack, An ICSP Header, And A Reset Button. It Contains Everything Needed To Support The Microcontroller; Simply Connect It To A Computer With A USB Cable Or Power It With A AC-to-DC Adapter Or Battery To Get Started.
Specifications:
- - - -
Microcontroller | ATmega328p |
Operating Voltage | 5V |
Input Voltage (recommended) | 6-11V |
Digital I/O Pins | 14 (of Which 6 Provide PWM Output) |
Analog Input Pins | 6 |
DC Current Per I/O Pin | 40 MA |
DC Current For 3.3V Pin | 300 MA |
Flash Memory | 32 KB Of Which 2KB Used By Bootloader |
SRAM | 2 KB |
EEPROM | 1 KB |
Clock Speed | 16 MHz |
- - - -
Test ProTest Procedure
/*
The Circuit:
* LCD RS Pin To Digital Pin 8
* LCD Enable Pin To Digital Pin 9
* LCD D4 Pin To Digital Pin 4
* LCD D5 Pin To Digital Pin 5
* LCD D6 Pin To Digital Pin 6
* LCD D7 Pin To Digital Pin 7
* LCD BL Pin To Digital Pin 10
* KEY Pin To Analogl Pin 0
*/
#include
LiquidCrystal Lcd(8, 13, 9, 4, 5, 6, 7);
Char Msgs[5][16] = {"Right Key OK ",
"Up Key OK ",
"Down Key OK ",
"Left Key OK ",
"Select Key OK" };
Int Adc_key_val[5] ={50, 200, 400, 600, 800 };
Int NUM_KEYS = 5;
Int Adc_key_in;
Int Key=-1;
Int Oldkey=-1;
Void Setup()
{
Lcd.clear();
Lcd.begin(16, 2);
Lcd.setCursor(0,0);
Lcd.print("ADC Key Testing");
}
Void Loop()
{
Adc_key_in = AnalogRead(0); // Read The V