ReferenciaReference
Conceptos de bloquesBlock concepts
El glosario del curso. Cada bloque explicado igual: qué es, por qué existe, cómo se traduce a código real (Python/Java) y el error más común. Crece sesión a sesión.The course glossary. Every block explained the same way: what it is, why it exists, how it maps to real code (Python/Java) and the most common mistake. It grows session by session.
EventosEvents
Cómo arranca un programaHow a program starts
EventosEvents
Al iniciar el programaWhen program starts
main() de Python o Java — el punto de entrada. Sin él, nada se ejecuta.It’s the main() of Python or Java — the entry point. Without it, nothing runs.MovimientoMovement
Hacer que el robot se muevaMaking the robot move
MovimientoMovement
Mover en línea recta durante __ (rotaciones / grados / segundos / cm)Move straight for __ (rotations / degrees / seconds / cm)
MovimientoMovement
Girar (giro sobre un punto)Turn (point turn)
MovimientoMovement
Fijar la velocidad de movimientoSet the movement speed
ControlControl
Repetir sin copiarRepeat without copying
ControlControl
Repetir __ vecesRepeat __ times
for i in range(4): de Python. La base de toda automatización.It’s Python’s for i in range(4): loop. The basis of all automation.Se desbloquea prontoUnlocks soon
Lo que vieneWhat’s coming
Sensores — Sesión 2Sensors — Session 2
Sensor de color, sensor de distancia y cómo leer sus datos para reaccionar al entorno.Color sensor, distance sensor and how to read their data to react to the environment.
Lógica — Sesión 3Logic — Session 3
Condicionales si/si no, bucles hasta que y por siempre, y el sensor de fuerza.If/else conditionals, until and forever loops, and the force sensor.