¡Explore las muchas características del micro:bit!
Desde robots bailarines hasta teclados plátonos, tu micro:bit tiene todas las características que necesitas para codificar cosas increíbles: ¡las posibilidades son infinitas!

Visión de Conjunto
Tu micro:bit tiene las siguientes características físicas:
- 25 LED programables individualmente
- 2 botones programables
- Pernos de conexión física
- Sensores de luz y temperatura
- Sensores de movimiento ( acelerómetro y brújula)
- Comunicación inalámbrica, vía Radio y Bluetooth
- Interfaz de USB
¡Echemos un vistazo a lo que estos componentes hacen y descubre cómo códificarlos!
LED

¿Qué es? LED significa Diodo Emisor de Luz. El micro:bit tiene 25 LED programables individualmente, lo que te permite visualizar texto, números e imágenes.
How do I code it? Learn more about coding the LEDs, or use the code references below.
Ejemplos - revisa este Corazón animado con parpadeo en JavaScript o aprende a hacer animaciones con Python!
Botones

¿Qué son? Hay dos botones en la parte frontal del micro:bit (etiquetados como A y B). Puedes detectar cuándo se presionan estos botones, lo que te permite activar el código en el dispositivo.
¿Cómo los codigo? Vea las referencias de código a continuación.
Ejemplos - echa un vistazo a este Botón sonriente proyecto, o este más avanzada máquina de votación proyecto, ambos controlados usando los botones en JavaScript.
Pines

¿Qué son esos? Hay 25 conectores externos en el conector de borde de la micro:bit, a los que nos referimos como 'pines'. ¡Programe motores, LEDs u otros componentes eléctricos con los pines, o conecte sensores adicionales para controlar tu código!
How do I code it? Learn more about the hardware of the pins, or use the code references below.
Ejemplos - programar una Tecla de Plantano, piratee tus auriculares y cree un Robot de Cartón de Leche con JavaScript! O bien, ¡eche un vistazo a este proyecto de cosquilloso micro:bit en Python!
Sensor de Luz

¿Qué es? Al invertir los LED de la pantalla para que se convierta en una entrada, la pantalla LED funciona como un sensor de luz básico, lo que te permite detectar la luz ambiental.
¿Cómo lo codigo? Consulte la referencia a continuación para el Editor de bloques de JavaScript:
Examples - learn how to chart the light level on the screen with JavaScript
Sensor de Temperatura

¿Qué es? Este sensor permite que el micro:bit detecte la temperatura ambiente actual, en grados Celsius.
¿Cómo los codigo? Vea las referencias de código a continuación.
Examples - code a digital thermometer in Celsius and Fahrenheit with JavaScript!
Acelerómetro

What is it? An accelerometer measures the acceleration of your micro:bit; this component senses when the micro:bit is moved. It can also detect other actions, e.g. shake, tilt, and free-fall.
¿Cómo los codigo? Vea las referencias de código a continuación.
Examples - code a Rock, Paper, Scissors game with JavaScript, triggered when the micro:bit is shaken! Or, create musical mayhem with Python!
Brújula

What is it? The compass detects the earth's magnetic field, allowing you to detect which direction the micro:bit is facing. The compass has to be calibrated before it can be used.
'Calibrating' the compass ensures the compass results are accurate. For the JavaScript Blocks Editor, use the 'calibrate compass' block. To calibrate the compass in Python use compass.calibrate().
When the calibration begins, the micro:bit will scroll an instruction on the display for you - either "Draw a circle" or "Tilt to fill screen". To calibrate the compass, just follow these instructions and tilt the micro:bit to move the dot in the centre of the screen around until you have either drawn the outline of a circle, or filled up the whole screen.
How do I code it? Use the code references below.
Examples - create a working compass to find North in JavaScript or Python!
Radio

What is it? The radio feature allows you to communicate wirelessly between micro:bits. Use the radio to send messages to other micro:bits, build multiplayer games, and much more!
How do I code it? Discover how to code the radio:
Examples - create a Multiplayer Rock, Paper, Scissors game (JavaScript), or create cool digital fireflies in JavaScript and Python!
Bluetooth

¿Qué son esos? A BLE (Bluetooth Low Energy) antenna allows the micro:bit to send and receive Bluetooth signals. This allows the micro:bit to wirelessly communicate with PCs, Phones, and Tablets, so you can control your phone from your micro:bit and send code wirelessly to your device from your phone!
Before using the Bluetooth Antenna you will need to pair your micro:bit with another device. Once paired, you can send programs wirelessly to your micro:bit.
The Python Editor doesn't currently support bluetooth.
What can I do with it? Send code to your micro:bit wirelessly.
USB Interface

¿Qué son esos? The USB interface allows you to connect the micro:bit to your computer via a micro-USB cable, which will power the device and allow you to download programs onto the micro:bit.