Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
arduino_uno [2022-12-18 00:50] – created asdf | arduino_uno [2023-02-25 19:14] (current) – asdf | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Arduino Uno ====== | ====== Arduino Uno ====== | ||
- | A microcontroller based around the ATmega328P chip. | + | A microcontroller based around the ATmega328P chip. The processor is clocked at 16 MHz and features 2 KB SRAM, 32 KB of program flash storage, and 1 KB of user-writable EEPROM. |
{{ :: | {{ :: | ||
+ | |||
+ | With a 10-bit ADC over an operating range of 0--5 V, the analog input pins have a resolution of 4.9 mV. Digital I/O pins can supply a maximum of 20 mA. | ||
+ | |||
+ | It appears from the documentation that the serial pins (0 and 1) are internally connected to the USB interface [(docs_serial)]. In order to use both USB and another serial device, the '' | ||
+ | |||
+ | Pins A4 and A5 can also function as I2C SDA and SCL, respectively. The '' | ||
+ | |||
+ | On the Uno, ints and shorts are 2 bytes; floats and doubles are 4 bytes. | ||
+ | |||
+ | ===== References ===== | ||
+ | [(docs_serial> | ||
+ | [(docs_wire> | ||
+ | |||
+ | {{tag> |