0

Background:

I am new to Arduino world, and I like to buy a board. I am a bit confused how Arduino products are being sold. Coming from Raspberry world, it seems that I don't know what actually Arduino is.

Question:

I am trying to understand what is it that this product offers:

Arduino UNO R3

.

  1. Why it says "For Arduino UNO R3"? 2. Isn't it actually an "Arduino UNO R3"? So why it says "For"?
  2. What are MEGA328P and CH340? Does "Arduino UNO R3" comes with other chipsets?
Allan Xu
  • 103
  • 1

2 Answers2

4

It sounds to me like an Arduino Uno clone.

Why it says "For Arduino UNO R3"?

I would read that as "For Arduino UNO R3 projects" (ie. Uno-compatible).

Isn't it actually an "Arduino UNO R3

No, it's a clone. Or not really a clone (see below) because they used different hardware. It is compatible with the Uno in most respects.

What are MEGA328P?

That is the main chip on the board (actually an Atmega328P).

and CH340?

They have saved money by using a CH340 USB-to-serial chip instead of the Atmega16U2 used on genuine Uno boards. You may need to install a different driver to make that work. I disagree with the other answer(s) that this is a separate board or chip. It is clear from the photo of the chip near the USB socket that it is a CH340 chip there. See, for example https://hackaday.com/tag/ch340/ from which I quote:

The cheapest USB to serial chip on the market appears to be the CH340G, available for 20-40 cents apiece from the usual retailers. There is, however, almost no English documentation, and the datasheet for the CH340 family doesn’t include this chip

They used it because it is cheap.

Does "Arduino UNO R3" comes with other chipsets?

Yes the genuine one comes with an Atmega328P (main processor) and Atmega16U2 (USB interface).


Having said all that, the Uno is a good all-rounder starting board to get going with Arduinos.

Note that they are using the SMD (surface mounted) main processor chip. If you fry it you need to replace the whole board, not just the chip. However the entire board is quite cheap. :)

Nick Gammon
  • 38,901
  • 13
  • 69
  • 125
1

The board in the picture is not an official Arduino board. It is a clone. You will note that in the picture the board does not say "Arduino" It may be 100% compatible or it may not, you have to decide if the low price is worth it.

If you want an official board you should check either http://arduino.cc or http://arduino.org to find official distributors. (see this question for information about why there is both arduino.cc and arduino.org).

Craig
  • 2,120
  • 10
  • 11