ЧП Ворон. Электронные компоненты и радиомонтажное оборудование. Микросхемы, транзисторы, реле, резисторы, конденсаторы, паяльное оборудование, припой.
Корзина пуста!
ВХОД ДЛЯ КЛИЕНТОВ

Забыли пароль?
Зарегистрироваться

УВАГА! Шановні клієнти магазину в м.Дніпро!

З 18.12.23 магазин в м.Дніпро за адресою вул.Новокримська 58 не працює.
Однак, наш інтернет-магазин відкритий для вас 24/7.
Усі місцеві замовлення можуть бути відправлені кур'єрськими службами.




Поиск:

Enter a search string or click on the microphone icon and begin speaking.

×
История запросов
ваша история поиска пуста
Whole catalog Development toolsModulesArduino and shields
Код товара:
021112

Module Arduino UNO R3

Original Arduino UNO version R3 based on ATmega328 in DIP package.
The ATmega16U2 microcircuit is used for USB communication .

Module Arduino UNO R3
In stock
420,00 UAH × = 420,00 UAH
from 1 pc : 420,00 UAH
from 5 pcs : 399,00 UAH ( -5,0%)
from 20 pcs : 378,00 UAH ( -10,0%)

Current balances:

Магазин-Днепр
79 pcs
For Online Orders
79 pcs

Изображение товара

Экраны LCD1602 | Arduino

Радиомодули 433МГц 315Мгц для управления/передачи данных

Модули адресных светодиодов WS2812B (матрицы, кольца)

Ультразвуковой датчик расстояния HC-SR04 (дальномер)

Arduino UNO R3 CH340G ATmega328 модули

Product description format_size zoom_out zoom_in

  Arduino Unocontroller is built onATmega328... The platform has 14 digital I/Os (6 of which can be used as PWM outputs), 6 analog inputs, a 16 MHz crystal oscillator, a USB connector, a power connector, an ICSP connector, and a reset button. To work, you need to connect the platform to the computer using a USB cable, or supply power using an AC/DC adapter or battery.
Unlike all previous boards that used an FTDI USB microcontroller for USB communication, the newArduino Unouses a microcontrollerATmega16U2 .
"Uno" is translated as one from Italian and the developers are thus hinting at the upcoming release of Arduino 1.0. The new board has become the flagship of the Arduino board line.

Characteristics

 

Microcontroller
ATmega328
Working voltage
5 in
Input voltage (recommended)
7-12V
Input voltage (limit)
6-20V
Digital Inputs/Outputs
14 (6 of which can be used as PWM outputs)
Analog inputs
6
Constant current through input/output
40 mA
DC current for 3.3V pin
50 mA
Flash memory                                                       
32 KB (ATmega328) of which 0.5 KB used for bootloader
RAM                                                                         
2 KB (ATmega328)
EEPROM
1 KB (ATmega328)
Clock frequency
16 MHz

Scheme and initial data

Schematic diagram:arduino-duemilanove-schematic.pdf

Food

  Arduino Unocan be powered via a USB connection or from an external power source. The power supply is automatically selected.

External power (not USB) can be supplied via an AC/DC converter (power supply) or battery. The voltage converter is connected via a 2.1 mm plug with a center positive pole. The battery wires are connected to the Gnd and Vin pins of the power connector.

The platform can operate with an external power supply of 6V to 20V. If the supply voltage is below 7V, the 5V pin may output less than 5V, and the platform may be unstable. When using voltages above 12V, the voltage regulator may overheat and damage the board. The recommended range is 7V to 12V.

Power pins:

  • VIN... The input is used to supply power from an external source (in the absence of 5V from a USB connector or other regulated power supply). The supply voltage is supplied through this pin.
  • 5V... A regulated voltage source used to power the microcontroller and components on the board. Power can be supplied from the VIN pin through a voltage regulator, or from a USB connector or other regulated 5V voltage source.
  • 3V3... The voltage at pin 3.3V is generated by the onboard regulator on the board. Maximum current consumption 50 mA.
  • GND... Ground leads.

Memory

The ATmega328 microcontroller has 32 KB of flash memory, of which 0.5 KB is used to store the bootloader, as well as 2 KB of RAM (SRAM) and 1 KB of EEPROM.

Inputs and Outputs

Each of the 14 digital pins of the Uno can be configured as input or output using the functions pinMode(), digitalWrite(), anddigitalRead(),. The pins operate at 5 V. Each pin has a pull-up resistor (disabled by default) of 20-50 kΩ and can pass up to 40 mA. Some pins have special functions:

  • Serial bus: 0 (RX) and 1 (TX)... The pins are used to receive (RX) and transmit (TX) TTL data. These pins are connected to the corresponding pins on the ATmega8U2 USB-to-TTL serial chip.
  • External interrupt: 2 and 3... These pins can be configured to trigger an interrupt on either a low value, a rising or falling edge, or when the value changes. Details are in the function descriptionattachInterrupt().
  • PWM: 3, 5, 6, 9, 10, and 11.Any of the conclusions providesPWMwith 8 bit resolution using the functionanalogWrite().
  • SPI: 10 (SS), 11 (MOSI), 12 (MISO), 13 (SCK). Through these pins, SPI communication is carried out, for which it is usedSPI library.
  • LED: 13. Built-in LED connected to digital pin 13. If the pin is high, the LED is on.

The Uno platform has 6 analog inputs (labeled A0 .. A5), each with a 10-bit resolution (ie 1024 different values). The pins have a measuring range of up to 5 V relative to ground as standard, however, it is possible to change the upper limit by means of the AREF pin and the functionanalogReference()... Some pins have additional functions:

  • I2C: 4 (SDA) and 5 (SCL).Through the pins, I2C (TWI) communication is carried out, for the creation of which is usedthe Wire library.

Additional pair of platform pins:

  • AREF.Reference voltage for analog inputs. Used with the functionanalogReference().
  • Reset. A low signal level at the pin reboots the microcontroller. Usually used to connect a reset button on an expansion board, which prevents access to the button on the Arduino board itself.

Pay attention to the connection between the pinsArduino and ATmega328 ports.

Communication

On the platformArduino Unoseveral devices are installed to communicate with a computer, other Arduino devices or microcontrollers. The ATmega328 supports UART TTL (5V) serial interface via pins 0 (RX) and 1 (TX). The ATmega8U2 microcircuit installed on the board directs this interface through USB, the programs on the computer side "communicate" with the board through a virtual COM port. The ATmega8U2 firmware uses standard USB COM drivers, no third party drivers are required, but on Windows, you need the ArduinoUNO.inf file to connect. The Serial Monitor of the Arduino software allows you to send and receive text data when connected to the platform. The RX and TX LEDs on the platform will blink when transmitting data through an FTDI chip or USB connection (but not when using serial transmission on pins 0 and 1).

With the SoftwareSerial library it is possible to create serial data transmission through any of the Uno digital pins.

The ATmega328 supports I2C (TWI) and SPI interfaces. The Arduino includes a Wire library for the convenience of using the I2C bus.

Programming

The platform is programmed using Arduino software. From the menu Tools > Board"Arduino Uno" is selected (according to the installed microcontroller). Details are inreference bookandinstructions.

The ATmega328 microcontroller comes with a pre-recorded bootloader, making it easy to write new programs without using external programmers. Communication is carried out by the original STK500 protocol.

It is possible not to use a bootloader and program the microcontroller via ICSP pins (in-circuit programming). Details are inof this manual.

Automatic (software) reboot

  Unois designed in such a way that before writing a new code, the reboot is carried out by the Arduino program itself on the computer, and not by pressing a button on the platform. One of the DTR lines of the ATmega16U2 for data flow control (DTR) is connected to the reset pin of the ATmega328 through a 100nF capacitor. Activation of this line, i.e. giving a low level signal, reboots the microcontroller. The Arduino program, using this function, uploads the code with one click of the Upload button in the programming environment itself. The low-level signaling on the DTR line is coordinated with the start of the code recording, which reduces the bootloader timeout.

The function has another use. The Uno reboots every time it is connected to the Arduino program on a Mac X or Linux computer (via USB). The bootloader is running for the next half second after the reboot. During programming, the first few bytes of the code are delayed to prevent the platform from receiving incorrect data (all except the code of the new program). If you perform a one-time debugging of a sketch written to the platform, or enter any other data at the first start, you need to make sure that the program on the computer waits for a second before transferring data.

On the Uno, it is possible to disable the automatic reload line by breaking the corresponding line. The pins of the microcircuits at both ends of the line can be connected for recovery purposes. The line is marked "RESET-EN". It is also possible to disable auto-restart by connecting a 110 ohm resistor between the 5 V supply and this line.

USB connector overcurrent protection

INArduino Unoa self-restoring fuse (automatic) is built-in, which protects the USB port of the computer from short-circuit currents and overcurrents. Although virtually all computers have this type of protection, this fuse nonetheless provides an additional barrier. The fuse is triggered when a current of more than 500 mA passes through the USB port and opens the circuit until the normal values ​​of the currents are restored.

physical characteristics

The length and width of the Uno PCB are 6.9 and 5.3 cm, respectively. USB and power connectors are outside of these dimensions. Four holes in the board allow it to be fixed to a surface. The distance between digital pins 7 and 8 is 0.4 cm, although it is 0.25 cm between the other pins.

Leave your feedback or ask a question

Only this product is discussed here. Off topic comments will be deleted! Please follow the Commenting Rules.

  • xavier A year ago share

    Доброго дня!Підкажіть, кабель USB йде у комплекті?

    Is the review helpful?
    • Денис (Менеджер интернет-магазина) A year ago share

      Так.

      Is the review helpful?
  • Сергій 13:32 05.03.2019 share

    доброго дня, скажіть будь ласка наскільки якісний цей клон

    Is the review helpful?
    • Денис (Менеджер интернет-магазина) 13:54 05.03.2019 share

      Бездоганна якість з оригінальним виконанням монтажної плати, оригінальною схемотехнікою та оригінальними компонентами. Купуйте - не пожалкуєте.

      Is the review helpful?
  • Александр 09:12 31.07.2018 share

    Здравствуйте, скажите пожалуйста, когда планируется поставка.

    Is the review helpful?
    • Денис (Менеджер интернет-магазина) 14:09 31.07.2018 share

      Добрый день. Ожидаем через 1-2 месяца.

      Is the review helpful?
  • 1 23:32 16.09.2017 share

    Плата модуля с обратной стороны белого цвета или синяя?  Что идет в комплекте вместе с платой?

    Is the review helpful?
    • Денис (Менеджер интернет-магазина) 09:45 18.09.2017 share

      Белого цвета, синего только сам логотип Arduino в виде знака бесконечности.
      В комплекте с платой идет только кабель USB. 

      Is the review helpful?
The data presented in the product description are for reference only and may differ from those indicated by the manufacturer.
To carry out technical calculations and obtain the exact parameters of the goods, use the datasheets from the manufacturer's website.

If you need additional information, or you found an error in the description, or have other questions about this product, then our manager will help you: Денис - Днепр unknown

Buy with this product: Посмотреть больше…