IDUINO For Maker's Life

Transcription

IDUINO for maker’s lifeUser ManualFor IDUINO development Boardwww.openplatform.cc

IDUINO for maker’s life1.Overview1.1 what is Arduino?Arduino is an open-source prototyping platform based on easy-to-use hardwareand software. Arduino boards are able to read inputs - light on a sensor, a finger on abutton, or a Twitter message - and turn it into an output - activating a motor, turningon an LED, publishing something online. You can tell your board what to do by sendinga set of instructions to the microcontroller on the board. To do so you use the Arduinoprogramming language (based on Wiring), and the Arduino Software (IDE), based onProcessing.The official website is www.arduino.cc and www.arduino.org.1.2 what is IDUINO ?Because of the arduino technology is totally opensource, so anyone can use thisfacility to create more valuable products.IDUINO is a series of Ardunio opensource products collection, which includes notonly motherboard, but hundreds of sensors and modules used for Arduino board, andmany kinds of Arduino Starter Kit, many kinds of Arduino projects, many kinds of carchassis , expansion board, accessories , Arduino DIY 3D Printer.IDUINO are more focused on manufacturing and constructing Arduino projectsystem.1.3 What’s the difference between Arduino and IDUINO?For the development, IDUINO is just a different brand comparing with the Arduinodevelopment.For other categories, IDUINO’s quantity exceeds Arduino a lot.www.openplatform.cc

IDUINO for maker’s life2. IDUINO unoThe IDUINO uno is 100 percent compatible with Arduino uno(Re3). It is amicrocontroller board based on the ATmega328P. It has 14 digital input/output pins(of which 6 can be used as PWM outputs), 6 analog inputs, a 16 MHz quartz crystal, aUSB connection, a power jack, an ICSP header and a reset button. It containseverything needed to support the microcontroller; simply connect it to a computerwith a USB cable or power it with a AC-to-DC adapter or battery to get started. You cantinker with your UNO without worrying too much about doing something wrong, worstcase scenario you can replace the chip for a few dollars and start over again.Pinout:www.openplatform.cc

IDUINO for maker’s lifeSpecifications:MicrocontrollerOperating VoltageInput Voltage (recommended)Input Voltage (limit)Digital I/O PinsPWM Digital I/O PinsAnalog Input PinsDC Current per I/O PinDC Current for 3.3V PinFlash MemorySRAMEEPROMClock SpeedLengthWidthWeightATmega328P5V7-12V6-20V14 (of which 6 provide PWM output)6620 mA50 mA32 KB (ATmega328P)of which 0.5 KB used by bootloader2 KB (ATmega328P)1 KB (ATmega328P)16 MHz68.6 mm53.4 mm25 g3. IDUINO Mega 2560The Mega 2560 is a microcontroller board based on the ATmega2560. It has 54digital input/output pins (of which 15 can be used as PWM outputs), 16 analog inputs,4 UARTs (hardware serial ports), a 16 MHz crystal oscillator, a USB connection, a powerjack, an ICSP header, and a reset button. It contains everything needed to support themicrocontroller; simply connect it to a computer with a USB cable or power it with aAC-to-DC adapter or battery to get started.Pinout:www.openplatform.cc

IDUINO for maker’s lifeSpecifications:MicrocontrollerOperating VoltageInput Voltage (recommended)Input Voltage (limit)Digital I/O PinsAnalog Input PinsDC Current per I/O PinDC Current for 3.3V PinFlash MemorySRAMEEPROMClock SpeedLengthWidthWeightATmega25605V7-12V6-20V54 (of which 15 provide PWM output)1620 mA50 mA256 KB of which 8 KB used by bootloader8 KB4 KB16 MHz101.52 mm53.3 mm37 gwww.openplatform.cc

IDUINO for maker’s life4. IDUINO NanoThe IDUINO Nano is a small, complete, and breadboard-friendly board based on theATmega328 or ATmega168.It has more or less the same functionality of the ArduinoDuemilanove, but in a different package. It lacks only a DC power jack, and works witha Mini-B USB cable instead of a standard one. The Nano was designed and is beingproduced by Gravitech.Specifications:MicrocontrollerOperating Voltage(logic level)Input Voltage(recommended)Input Voltage (limits)Digital I/O PinsAnalog Input PinsDC Current per I/O PinFlash MemorySRAMAtmel ATmega168 or ATmega3285V7-12 V6-20 V14 (of which 6 provide PWM output)840 mA16 KB (ATmega168) or 32 KB (ATmega328) of which 2 KBused by bootloader1 KB (ATmega168) or 2 KB (ATmega328)www.openplatform.cc

IDUINO for maker’s lifeEEPROMClock SpeedDimensionsLengthWidthWeigth512 bytes (ATmega168) or 1 KB (ATmega328)16 MHz0.73" x 1.70"45 mm18 mm5g5. IDUINO LeonardoThe IDUINO Leonardo is a microcontroller board based on the ATmega32u4 . Ithas 20 digital input/output pins (of which 7 can be used as PWM outputs and 12 asanalog inputs), a 16 MHz crystal oscillator, a micro USB connection, a power jack, anICSP header, and a reset button. It contains everything needed to support themicrocontroller; simply connect it to a computer with a USB cable or power it with aAC-to-DC adapter or battery to get started.www.openplatform.cc

IDUINO for maker’s lifeSpecificationsMicrocontrollerOperating VoltageInputVoltage(recommended)Input Voltage (limits)Digital I/O PinsPWM ChannelsAnalog Input ChannelsDC Current per I/O PinDC Current for 3.3V PinFlash MemorySRAMEEPROMClock 0 mA50 mA32 KB (ATmega32u4) of which 4 KB used bybootloader2.5 KB (ATmega32u4)1 KB (ATmega32u4)16 MHz68.6 mm53.3 mm20g6. How to use these board?Here we use a example to indicate how to use these board. In this trail, we blink aled via the IDUINO uno board’s 13 digital pin.The connection as below:www.openplatform.cc

IDUINO for maker’s lifeFirst, download the Arduino latest edition Integratedenvironment(IDE) from this opmentthen install the software, and connect the IDUINO development board with thecomputer via USB cable, like below:www.openplatform.cc

IDUINO for maker’s lifelaunch the Arduino application, and open File Examples 01.Basics Blink.www.openplatform.cc

IDUINO for maker’s lifeYou'll need to select the entry in the Tools Board menu that corresponds to yourArduino.www.openplatform.cc

IDUINO for maker’s lifeSelect the serial device of the Arduino board from the Tools Serial Port menu. On theMac, this should be something with /dev/tty.usbmodem (for the Uno or Mega 2560)or /dev/tty.usbserial (for older boards) in it.www.openplatform.cc

IDUINO for maker’s lifeNow, simply click the "Upload" button in the environment. Wait a few seconds - youshould see the RX and TX LEDs on the board flashing. If the upload is successful, themessage "Done uploading." will appear in the status bar. (Note: If you have an ArduinoMini, NG, or other board, you'll need to physically press the reset button on the boardimmediately before clicking the upload button on the Arduino Software.)A few seconds after the upload finishes, you should see the pin 13 (L) LED on theboard start to blink (in orange). If it does, congratulations! You've gotten Arduino upand-running.www.openplatform.cc

1.1 what is Arduino? Arduino is an open-source prototyping platform based on easy-to-use hardware . many kinds of Arduino projects, many kinds of car chassis , expansion board, accessories , Arduino DIY 3D Printer. . Length 101.52 mm Width 53.3 mm Weight 37 g . IDUINO for maker's life www.openplatform.cc 4. IDUINO Nano