

The ATmel MCU ATMEGA16U2 MEGA 2560 R3 Improved Version CH340G Board is a micro-controller board base on the ATmega2560. It has a USB host interface to connect with Android based phones, base on the MAX3421e IC. RoboticsBD
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. The MEGA ADK is base on the Mega 2560. Similar to the Mega 2560 and Uno, it features an ATmega8U2 program as a USB-to-serial converter. Revision 3 of the Mega ADK board has a resistor pulling the 8U2 HWB line to ground, making it easier to put into DFU(Device Firmware Upgrade) mode. RoboticsBD
The board has the following new features:
The Mega Arduino R3 Android Accessory Development Kit (ADK) can be power via the USB connection or with an external power supply. The power source is select automatically. External (non-USB) power can come either from an AC-to-DC adapter (wall-wart) or battery. The adapter can be connected by plugging a 2.1mm center-positive plug into the board’s power jack. RoboticsBD
Leads from a battery can be inserted in the GND and Vin pin headers of the POWER connector. Because the Mega R3 Android Accessory Development Kit (ADK) is a USB Host, the phone will attempt to draw power from it when it needs to charge. When the ADK is power over USB, 500mA total is available for the phone and board.
Because Atmel is moving more and more of their production capacity to surface mount ICs, the DIP packaged ATmega is becoming more and more difficult to get. The board is identical to the PTH version of the Uno, but you won't be able to remove the ATmega without some hot-air. This change shouldn't affect most users. Besides - when was the last time you managed to destroy an ATmega and needed to repair an Arduino board? Those things are nearly indestructible. Featured By RoboticsBD.
Product Images are shown for illustrative purposes only and may differ from the actual product.
RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD
*Please note that the boards have a CH340G USB-Controller rather than ATmega16 like regular MEGA2560. They are recognized on Linux without any additional drivers. Mac OS and Windows users may need to install an additional driver. RoboticsBD
RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD
General Specification | |
Input Voltage (recommended) | 7-12V |
Digital I/O Pins | 54 (of which 15 provide PWM output) |
Analog Input Pins | 16 |
Flash Memory | 256 KB of which 8 KB used by boot-loader. |
Microcontroller | ATmega2560 |
Country of Origin/Manufacture | China |
PWM Output Pins | 14 |
Dimensions (mm) LxWxH | 110 x 53 x 15 mm. |
Weight (gm) | 35 |
Shipment Weight | 0.037 kg |
Shipment Dimensions | 10.5 × 5.5 × 1.5 cm |
Please allow 5% measuring deviation due to manual measurement.
RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD
Memory
The Mega R3 Android Accessory Development Kit (ADK) has 256 KB of flash memory for storing code (of which 8 KB is used for the bootloader); 8 KB of SRAM and 4 KB of EEPROM (which can be read and written with the EEPROM library).
Input and Output
Each of the 50 digital pins on the Mega R3 Android Accessory Development Kit (ADK) can be used as an input or output; using pinMode(), digitalWrite(), and digitalRead() functions. They operate at 5 volts. Each pin can provide or receive a maximum of 40 mA . has an internal pull-up resistor (disconnect by default) of 20-50 kOhm. In addition, some pins have specialized functions:
MAX3421E
The Mega R3 Android Accessory Development Kit (ADK) has 16 analog inputs, each of which provides 10 bits of resolution (i.e. 1024 different values). By default, they measure from ground to 5 volts, though is it possible to change the upper end of their range using the AREF pin and analogReference() function. There are a couple of other pins on the board:
Communication
The Mega R3 Android Accessory Development Kit (ADK) has a number of facilities for communicating with a computer, another Arduino, or other micro-controllers. The ATmega2560 provides four hardware UARTs for TTL (5V) serial communication. An ATmega8U2 on the board channels one of these over USB and provides a virtual com port to software on the computer (Windows machines will need a .inf file, but OSX and Linux machines will recognize the board as a COM port automatically. The Arduino software includes a serial monitor which allows simple textual data to be sent to and from the board.
The RX and TX LEDs on the board will flash when data is being transmitted via the ATmega8U2/16U2 chip and USB connection to the computer (but not for serial communication on pins 0 and 1). A Software-serial library allows for serial communication on any of the MEGA ADK’s digital pins. The ATmega2560 also supports TWI and SPI communication. The Arduino software includes a Wire library to simplify the use of the TWI bus, see the Wire library for details. For SPI communication, use the SPI library.
The USB host interface given by MAX3421E IC allows the Arduino MEGA ADK to connect and interact to any type of device that has a USB port. For example, allows you to interact with many types of phones, controlling Canon cameras, interfacing with keyboard, mouse and games controllers as Wiimote and PS3.
Programming
The Mega R3 Android Accessory Development Kit (ADK) can be the program with the Arduino software (download). For details, see the reference and tutorials. The ATmega2560 on the MEGA ADK comes preburn with a boot-loader (the same on Mega 2560) that allows you to upload new code to it without the use of an external hardware programmer. It communicates using the original STK500v2 protocol (reference, C header files).
You can also bypass the bootloader and program the microcontroller through the ICSP (In-Circuit Serial Programming) header using Arduino ISP or similar; see these instructions for details. The ATmega8U2 firmware source code is available in the Arduino repository. The ATmega8U2 is load with a DFU bootloader, which can be activated by:
Automatic (Software) Reset
Rather then requiring a physical press of the reset button before an upload, the Arduino MEGA ADK is designed in a way that allows it to be reset by software running on a connected computer. One of the hardware flow control lines (DTR) of the ATmega8U2 is connected to the reset line of the ATmega2560 via a 100 nano-farad capacitor. When this line is asserted (taken low), the reset line drops long enough to reset the chip. The Arduino software uses this capability to allow you to upload code by simply pressing the upload button in the Arduino environment.
This means that the boot-loader can have a shorter timeout, as the lowering of DTR can be well-coordinated with the start of the upload. This setup has other implications. When the MEGA ADK is connected to either a computer running Mac OS X or Linux, it resets each time a connection is made to it from software (via USB). For the following half-second or so, the bootloader is running on the MEGA ADK. While it is programmed to ignore malformed data (i.e. anything besides an upload of new code), it will intercept the first few bytes of data sent to the board after a connection is open.
If a sketch running on the board receives one-time configuration or other data when it first starts; make sure that the software with which it communicates waits for a second after opening the connection and before sending this data. The MEGA ADK contains a trace that can be cut to disable the auto-reset. The pads on either side of the trace can be solder together to re-enable it. It’s the label “RESET-EN”. You may also be able to disable the auto-reset by connecting a 110-ohm resistor from 5V to the reset line; see this forum thread for details.
USB Over-current Protection
The Mega R3 Android Accessory Development Kit (ADK) has a resettable polyfuse that protects your computer’s USB ports from shorts and overcurrent. Although most computers provide their own internal protection, the fuse provides an extra layer of protection. If more than 500 mA is applied to the USB port. The fuse will automatically break the connection until the short or overload is removed.
Physical Characteristics and Shield Compatibility
The maximum length and width of the Mega R3 Android Accessory Development Kit (ADK) PCB are 4 and 2.1 inches respectively; with the USB connector and power jack extending beyond the former dimension. Three screw holes allow the board to be attached to a surface or case. Note that the distance between digital pins 7 and 8 is 160 mil (0.16″); not an even multiple of the 100 mil spacing of the other pins. The MEGA ADK is designed to be compatible with most shields design for the Uno, Diecimila or Duemilanove.
Digital pins 0 to 13 (and the adjacent AREF and GND pins), analog inputs 0 to 5; the power header, and ICSP header are all in equivalent locations. Further, the main UART (serial port) is located on the same pins (0 and 1); as are external interrupts 0 and 1 (pins 2 and 3 respectively). SPI is available through the ICSP header on both the MEGA ADK and Duemilanove / Diecimila.
Please note that I2C is not located on the same pins on the MEGA ADK (20 and 21); as the Duemilanove / Diecimila (analog inputs 4 and 5).
1 x Arduino Mega 2560 CH340
1 x Cable for Arduino Mega 2560.
RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD
RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD RoboticsBD
The latest price of Arduino Mega 2560 CH340 in Bangladesh is BDT 1,498 You can buy the Arduino Mega 2560 CH340 at best price from our RoboticsBD or visit RoboticsBD Office.
Please note that the product information provided on our website may not be entirely accurate as it is collected from various sources on the web. While we strive to provide the most up-to-date information possible, we cannot guarantee its accuracy. We recommend that you always read the product labels, warnings, and directions before using any product. |
Product Images are shown for illustrative purposes only and may differ from the actual product. |
Reference: RBD-0009
54 Digital I/O terminals (14 of which have programmable PWM outputs). 16 Analog Inputs. 4 UARTs (hardware serial ports). 16 MHz crystal clock. RoboticsBD Operating voltage: 6 ~ 12v. Dimensions: 110 x 53 x 15 mm.
Reference: RBD-0094
The Arduino Uno R3 High-Quality Edition Arduino UNO in Bangladesh Micro-controller : ATmega328. Operating Voltage : 5V. Input Voltage (recommended) : 7-12V. Digital I/O Pins : 14 (of which 6 provide PWM output). Analog Input Pins : 6. The Arduino Uno R3 High-Quality Edition embodies superior craftsmanship and meticulous attention to detail, resulting in...
Reference: RBD-0436
Supply Voltage: 12V Standard interfaces (as that of the extruder) Reserved GCI like I2C and RS232 3 MOSFET’s are applied to the heater/ fan and thermistor circuit. Another 5A added to protect the component parts. An 11A fuse is added to the hotbed. Support 5 stepper drive board
Reference: RBD-1214
The board is compatible with Mega 2560. excellent solution for developing projects based on ATmega2560. The board can be powered directly through the Micro USB connector The maximum output current upon 5V is around 800mA, while on the 3.3V it is about 800mA.
Reference: RBD-2199
Compatible with the Arduino IDE, making it easy for beginners to start using Smaller and cheaper than traditional Arduino boards Powered by a 16.0 MHz microcontroller Fully assembled except for headers, allowing for easy soldering Great for projects where size and cost are a concern Perfect for beginners to jump into electronics Can be used for a variety...
Reference: RBD-0106
Description: Arduino is an open-source physical computing platform based on a simple i/o board and a development environment that implements theProcessing/Wiring language.
Reference: RBD-2267
Integrated Wi-Fi and Bluetooth connectivity make this board a great choice for IoT projects and robotics. The ESP32 chip on the board is a dual-core microcontroller that operates at up to 240 MHz, providing ample processing power for complex projects. With 520 KB of SRAM and 4 MB of flash memory, the board has plenty of memory for storing and running...
Reference: RBD-0009
54 Digital I/O terminals (14 of which have programmable PWM outputs). 16 Analog Inputs. 4 UARTs (hardware serial ports). 16 MHz crystal clock. RoboticsBD Operating voltage: 6 ~ 12v. Dimensions: 110 x 53 x 15 mm.
Reference: RBD-1133
Compatible with NUCLEO-F411RE, onboard Cortex-M4 microcontroller STM32F411RET6 Arduino connectivity support, easy to connect with various Arduino shields and access the massive Arduino resources ST Morpho headers provide full access to all STM32 I/Os, easy for peripheral expansion Supports mbed, build prototype quickly by mbed SDK and online tools...
Reference: RBD-1821
Open-source, Interactive, Programmable, Low cost, Simple, Smart, WI-FI enabled Arduino-like hardware IO Integrated TR switch, balun, LNA, power amplifier and matching network Integrated PLL, regulators, DCXO and power management units Onboard USB to serial chip to easily program and upload codes from the Arduino IDE Easy to use breadboard friendly form...
Reference: RBD-1808
Model: F407VE-512K STM32F407VET6 development board F407 microcontroller learning board STM32 system board
Reference: RBD-0694
Power input: 4.5V ~ 9V (10VMAX), USB-powered Transfer rate: 110-460800bps Support UART / GPIO data communication interface Support Smart Link Smart Networking Working temperature: -40°C ~ + 125°C Drive Type: Dual high-power H-bridge Don’t need to download resetting A great set of tools to develop ESP8266 Flash size: 4MByte Lowest cost WI-FI Note: The...
Reference: RBD-2162
USB Type: Type-A to Mini-B Length: 1 meter/ 3.2 Feet Exclusively designed for Arduino boards. Compatible with Arduino Nano Larger Cable
Reference: RBD-0576
Chipboard STM32F103C8T6 On board, SWIM interface and reset button Micro USB line or the 2.54 pin to link to the power with the input voltage 4.5V-15V. Power light and the Demo indicator light Leads all the pins and has detailed label for the Pins. Support SWIM debug mode. RoboticsBD
Reference: RBD-1131
Up to 480 Mbps data transfer rate. USB Type: Type-A to Mini-B Weight: 15 gm Length: 30 cm Exclusively designed for Arduino boards.
Reference: RBD-1402
The perfect solution for breaking out the pins from Lua V3 Nodemcu. Lead-out all the IO ports of the ESP-12E development board Lead out the pins of 5V and 3.3V power supply Convenient to connect with peripheral modules Onboard 5V / 1A DC-DC step-down converter circuit Onboard power indicator With DC power jack 6-24V.
Reference: RBD-1215
131 powerful instructions – Most Single Clock Cycle Execution 32 x 8 general purpose working registers Fully static operation Up to 20MIPS throughput at 20MHz On-chip 2-cycle multiplier Write/erase cycles: 10,000 flash/100,000 EEPROM Optional boot code section with independent lock bits In system programming by on-chip boot program True read while write...
Reference: RBD-0838
ATMEGA32U4 running in 5V / 16MHz Support Arduino IDE V1.0.1 Micro USB interface programming on the board Four 10-bit ADC pin 12 digital I / O (5 PWM capability) Rx and Tx hardware serial connection. RoboticsBD
Reference: RBD-2239
Wearable e-textile technology. Designed with large sew tabs LED Red Color
Reference: RBD-2271
Wide compatibility with ESP32-DevKitC(30P) series boards Safe and reliable with stable power and signal transmission Extended GVS interface for easy connection to various electronic modules and sensors JUMP interface for easy reuse of all pins, making it ideal for DIY projects Versatile and reliable option suitable for a wide range of projects
Reference: RBD-1809
Digispark Pro ATtiny167 Micro USB 16MHz
Reference: RBD-1875
Fully compatible with the PC. Moulded strain relief and PVC over moulding to ensure a lifetime of error-free data transmissions. Aluminium under mould shield helps meet FCC requirements on KMI/RFI interference. Foil and braid shield complies with fully rated cable specifications reducing EMI/FRI interference.
Reference: RBD-2137
ESP32 Development Board Integrated antenna and RF balun Dual-mode Wi-Fi and Bluetooth chips Small size and high performance-price ratio Compatible with Arduino
Reference: RBD-1216
14-/20-pin DIP (N) Socket 20 pin LaunchPad standard leveraging the BoosterPack ecosystem On-Board EZ-FET emulator featuring EnergyTrace™ technology Supports MSP430G2xx2, MSP430G2xx3, and MSP430F20xx devices in PDIP14 or PDIP20 packages 1 user buttons and 3 LEDs for user interaction
Reference: RBD-0155
Microcontroller: ATmega328 Circuit Operating Voltage: 5V Clock frequency: 16MHz. Digital I/O Pins: 14 8 analog input port: A0 ~ A7. A pair of TTL level serial port transceiver : RX / TX. 6 PWM port: D3, D5, D6, D9, D10, D11. Support serial download.
Reference: RBD-2160
Fully compatible with the PC. Moulded strain relief and PVC over moulding to ensure a lifetime of error-free data transmissions. Aluminium under mould shield helps meet FCC requirements on KMI/RFI interference. Foil and braid shield complies with fully rated cable specifications reducing EMI/FRI interference.
Reference: RBD-1110
Supports a wide range of ATMEL AVR microcontroller. Works with AVR Studio or WINAVR(GCC) Works with ATMEL AVR Studio 4.13
Reference: RBD-2244
Wearable e-textile technology. Designed with large sew tabs Slide Switch
Reference: RBD-1407
Flash LED off: 180mA @ 5V. Flash LED on to maximum brightness: 310mA @ 5V. Deep-sleep: 6mA @ 5V min. Modem-sleep: 20mA @ 5V min. Light-sleep: 6.7mA @ 5V min. Programmer: ESP32-CAM-MB MICRO USB Download Module The ESP32 CAM does not come pre-assembled with the camera. You'll need to connect the camera ribbon cable to the board, a task which can be...
Reference: RBD-1761
USB Type: Type-A to Type-B Weight: 80 gm. Length: 1m / 3.2Feet Long cable for easy work Fully compatible with the PC. Molded strain relief and PVC over-molding to ensure a lifetime of error-free data transmissions.
Reference: RBD-2270
Powerful and versatile ESP32 SoC with WiFi and Bluetooth connectivity 4MB of flash memory and 520KB of SRAM for storing firmware and data Compatible with the Arduino development environment for easy programming Input/output pins for connecting to sensors, actuators, and other peripherals Can be programmed using MicroPython, a high-level programming...
Reference: RBD-2241
Wearable e-textile technology. Designed with large sew tabs LED White Color
Reference: RBD-2196
USB Type: Type-A to Type-B Weight: 26 gm. Length: 50 cm Long cable for easy work Fully compatible with the PC. Molded strain relief and PVC over-molding to ensure a lifetime of error-free data transmissions.
Reference: RBD-0682
Microcontroller: ATmega168 or ATmega328V Operating Voltage: 2.7-5.5 V Digital I/O Pins: 14 PWM Channels: 6 Analog Input Channels: 6 DC Current per I/O Pin: 40 mA Board will run from 2V to 5V. The latest version of the LilyPad supports automatic reset for even easier programming. The back side of the LilyPad is now completely flat! RoboticsBD
Reference: RBD-2091
Digital signal output 18B20 Temperature Sensor Chip (MY18E20 or DS18b20) Resolution adjustment ranges from 9-12 bytes. Send data via a pin Temperature measurement ranges: -55°C to +125°C, be accurate to 0.5°C.Compatible with DS18B20
Reference: RBD-1536
Over Charge Voltage Range: 4.25-4.35 V + 0.05 V Over Voltage Range: 2.5-3.0 V + 0.05 V Max. Operating Current: 13 A Max. Limiting Current: 20 A Charging Voltage: 8.4-9 V
Reference: RBD-0094
The Arduino Uno R3 High-Quality Edition Arduino UNO in Bangladesh Micro-controller : ATmega328. Operating Voltage : 5V. Input Voltage (recommended) : 7-12V. Digital I/O Pins : 14 (of which 6 provide PWM output). Analog Input Pins : 6. The Arduino Uno R3 High-Quality Edition embodies superior craftsmanship and meticulous attention to detail, resulting in...
Reference: RBD-0833
Soldering Iron KOOCU V501 25W Constant Temperature Electric Soldering Iron Soldering Stand Soldering Lead Solder Resin Wire Cutter Sucker
Reference: RBD-0523
Module Power: 5.00V Module Size : 43 x 32mm(1.69×1.26″) Measuring Range :0 – 14PH Measuring Temperature: 0 – 60 ℃ Accuracy : ± 0.1pH (25 ℃)
Reference: RBD-0427
Working voltage: 3.3V-5V Output form: digital output (0 and 1)
Reference: RBD-1178
Size: 5mm Emitted Color : UV View Angle: About 20 - 25 degree. Luminous Intensity: 800mcd-2500mcd
Reference: RBD-0438
ENC28J60 Ethernet Module HanRun HR911105A Ethernet port 5V supply voltage 100% Genuine ENC28J60 Chipset, compatible with Arduino etc. 25MHz Crystal. Standard HanRun HR911105A Ethernet Interface. RoboticsBD