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
Sensores · Sesión 2Sensors · Session 2
Que el robot perciba el mundoLetting the robot perceive the world
SensoresSensors
Sensor de colorColor sensor
color = sensor.get_color(). El programa toma un dato del exterior para decidir.It's reading an input: color = sensor.get_color(). The program takes outside data to decide.SensoresSensors
Sensor de distancia (ultrasonido)Distance sensor (ultrasonic)
cm = sensor.get_distance_cm(). Un número que cambia en tiempo real.Another numeric input: cm = sensor.get_distance_cm(). A number that changes in real time.ControlControl
Esperar hasta que…Wait until…
while distancia > 15: seguir(). La antesala del if/else de la Sesión 3.Waiting on a condition: while distance > 15: keep_going(). The doorway to Session 3's if/else.Lógica · Sesión 3Logic · Session 3
Cómo un robot decideHow a robot decides
ControlControl
Si / si no (la decisión)If / else (the decision)
if / else de Python o Java — la base de toda decisión.It's the if / else of Python or Java — the basis of every decision.ControlControl
Por siempre / repetir (el bucle)Forever / repeat (the loop)
while True: de Python — el latido de un robot autónomo.It's Python's while True: — the heartbeat of an autonomous robot.SensoresSensors
Sensor de fuerza (el botón)Force sensor (the button)
if button.is_pressed().Like reading a button: if button.is_pressed().Y ahora…And now…
Ya tienes toda la caja de herramientasYou now have the full toolkit
Rumbo a la Feria de InventoresHeading to the Inventors' Fair
Ya sabes armar, mover 3 motores, leer los 3 sensores, secuenciar, esperar hasta que, decidir con si / si no y repetir con bucles. El jueves aplicas todo en tu propio robot.You know how to build, drive 3 motors, read the 3 sensors, sequence, wait until, decide with if / else and repeat with loops. On Thursday you apply it all to your own robot.