IDUINO for maker’s life User Manual For IDUINO Mega2560 Board(ST1026) www.openplatform.
IDUINO for maker’s life 1.Overview 1.1 what is Arduino? Arduino is an open-source prototyping platform based on easy-to-use hardware and software. Arduino boards are able to read inputs - light on a sensor, a finger on a button, or a Twitter message - and turn it into an output - activating a motor, turning on a LED, publishing something online. You can tell your board what to do by sending a set of instructions to the microcontroller on the board.
IDUINO for maker’s life 2.IDUINO Mega 2560 The Mega 2560 is a microcontroller board based on the ATmega2560. It has 54 digital 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 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 an AC-to-DC adapter or battery to get started.
IDUINO for maker’s life Specifications: Microcontroller Operating Voltage Input Voltage (recommended) Input Voltage (limit) Digital I/O Pins Analog Input Pins DC Current per I/O Pin DC Current for 3.3V Pin Flash Memory SRAM EEPROM Clock Speed Length Width Weight ATmega2560 5V 7-12V 6-20V 54 (of which 15 provide PWM output) 16 20 mA 50 mA 256 KB of which 8 KB used by bootloader 8 KB 4 KB 16 MHz 101.52 mm 53.3 mm 37 g 3. How to use these boards? Here we use an example to indicate how to use these board.
IDUINO for maker’s life First, download the Arduino latest edition Integrated environment(IDE) from this page: https://www.arduino.cc/en/Main/Software, development Then install the software, and connect the IDUINO development board with the computer via USB cable, like below: www.openplatform.
IDUINO for maker’s life launch the Arduino application, and open File > Examples > 01.Basics > Blink. www.openplatform.
IDUINO for maker’s life You'll need to select the entry in the Tools > Board menu that corresponds to your Arduino. www.openplatform.
IDUINO for maker’s life Select the serial device of the Arduino board from the Tools > Serial Port menu. On the Mac, 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.
IDUINO for maker’s life Now, simply click the "Upload" button in the environment. Wait a few seconds - you should see the RX and TX LEDs on the board flashing. If the upload is successful, the message "Done uploading." will appear in the status bar. (Note: If you have an Arduino Mini, NG, or other board, you'll need to physically press the reset button on the board immediately before clicking the upload button on the Arduino Software.