A tag is a keyword or label that categorizes your question with other, similar questions. Using the right tags makes it easier for others to find and answer your question.
Type to find tags: |
arduino-uno× 3014
the most common of the Arduino boards. It is based on the ATmega328 microcontroller.
|
serial× 879
the standard USB connection between the Arduino and a computer with a standard USB A to B cable or through the TX/RX pins using a USB to serial converter. It can also refer to …
|
arduino-mega× 690
A microcontroller board based on the ATmega2560 or 1280 chip. Use this tag for questions specifically regarding the Mega, and not just general Arduino usage.
|
programming× 651
The process of designing and writing source code as part of a program (or sketch) for Arduino. Do not use for uploading to an Arduino board.
|
sensors× 496
for questions about selecting, connecting, using, and debugging sensors.
|
c++× 458
the standard language used to program the Arduino IDE. However, the Arduino IDE does have lots of libraries built in, so functions such as "main" are not called directly in the sketch code. Mos…
|
arduino-ide× 369
for questions about the official IDE. The open-source IDE makes it easy to write code and upload it to any Arduino board. It runs on Windows, Mac OS X, and Linux.
|
power× 347
for questions regarding powering and/or power consumption of Arduino systems.
|
led× 310
a type of light source which is typically fairly small and has low power requirements.
|
motor× 292
for questions about connecting, controlling, and safely operating motors using an Arduino board.
|
bluetooth× 291
Bluetooth enables short-range wireless communication between devices.
|
esp8266× 282
An IC that offers Wi-Fi networking compatible with b/g/n standards. It also has integrated TCP/IP protocol stack. Extremely popular along IoT community as a low cost and powerful board.
|
arduino-nano× 248
a small board based on the ATmega328 or 168. It has male headers, so it can be plugged directly into a breadboard. It is small and compact, and features a USB chip.
|
wifi× 229
a trademark of the Wi-Fi Alliance. A Wi-Fi enabled device such as a personal computer, video game console, smartphone, or digital audio player can connect to the Internet when within range of…
|
arduino-due× 228
an microcontroller card based on the Atmel SAM3X8E ARM Cortex-M3 CPU. This is a 32bit ARM core MCU.
|
shields× 214
attachments that "snap" onto the Arduino board adding functionality. They are usually the same shape as an Uno/Leonardo/Duemilanove. Some examples are: the Ethernet (includes SD port) shie…
|
i2c× 213
a bus for low speed peripherals. Use this tag for questions regarding how to use I²C with an Arduino, or for problems with I²C and your Arduino.
|
library× 206
a file that can be included into the code to add new instructions by combining many existing instructions and creating one easy to use instruction to call.
|
lcd× 206
LCD stands for "Liquid Crystal Display" and is commonly known as a screen. They are found in all flat-screen monitors and televisions. They can make many colors and shapes, but are hard to control. (N…
|
usb× 200
Widely used standard for connecting computers to other devices, such as printers and keyboards.
|
pins× 197
like gateways between the Arduino code running on the chip and the components attached to Arduino. It can refer either to the physical connectors on the board, or it can refer to the pins d…
|
gsm× 193
a very widely used standard for communication over mobile phone networks.
|
ethernet× 191
Ethernet can be used for communication between an Arduino and a computer, server, or website. For question concerning the Arduino Ethernet board, use the tag "arduino-ethernet" instead.
|
c× 174
a procedural programming language which is widely used in embedded systems. PLEASE NOTE: Arduino is typically programmed in C++, not C.
|
pwm× 172
a form of signal modulation that allows digital output to approximate an analog signal. Use this for questions about using the PWM pins (marked with ~).
|
servo× 170
a type of motor which uses a feedback mechanism for precise control of speed and position.
|
interrupt× 170
Interrupts allow the processor to suspend normal operation temporarily so that a high-priority software or hardware event can be handled instead.
|
communication× 166
for questions about communication between multiple devices.
|
arduino-yun× 159
a microcontroller board based on the ATmega32u4 and the Atheros AR9331. Use this tag for questions specifically regarding the Yún, and not just general Arduino usage.
|
atmega328× 155
the chip that is the heart of the Arduino Uno. It is popular also as a chip to use to create your own board. Since it is available in the through hole version, it can be placed on a b…
|
arduino-leonardo× 147
An Arduino board based on the ATmega32u4 chip with built in USB HID functionality
|
softwareserial× 145
A library for emulating UART functionality in software on any available digital IO pins. Use this tag for questions regarding SoftwareSerial.
|
sketch× 143
compiled code that is uploaded to an Arduino board.
|
voltage-level× 139
Voltage level should be used for questions that are referring to using hardware together that operates on different voltages (the "concentration" of electricity).
|
hardware× 135
The physical circuitry and other components of a machine or device. This is distinct from the program code running on a device, which may be called software or firmware.
|
analogread× 133
A standard Arduino function for detecting the voltage on an analog pin via ADC.
|