<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>Forem: Robot Academy Argentina</title>
    <description>The latest articles on Forem by Robot Academy Argentina (@robotacademyarg).</description>
    <link>https://forem.com/robotacademyarg</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3879221%2Ff772032c-e490-45a1-8bcf-a75cc1aea66b.png</url>
      <title>Forem: Robot Academy Argentina</title>
      <link>https://forem.com/robotacademyarg</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/robotacademyarg"/>
    <language>en</language>
    <item>
      <title>The Real Reason Kids Fail at Text-Based Programming (Aeducation, robotics, programming, teachingnd How Physical Robotics Fixes It)</title>
      <dc:creator>Robot Academy Argentina</dc:creator>
      <pubDate>Sat, 18 Apr 2026 20:54:57 +0000</pubDate>
      <link>https://forem.com/robotacademyarg/the-real-reason-kids-fail-at-text-based-programming-aeducation-robotics-programming-teachingnd-35bl</link>
      <guid>https://forem.com/robotacademyarg/the-real-reason-kids-fail-at-text-based-programming-aeducation-robotics-programming-teachingnd-35bl</guid>
      <description>&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Anyone who has taught technology knows that the jump from visual programming (block-based coding) to formal text-based languages like Python, C++, or JavaScript is where many future developers are lost. Kids go from dragging intuitive colored blocks to facing dark terminals with cryptic syntax errors. In that gap, motivation drops to zero.

The root problem is pedagogical. We tend to teach code as if we were dictating grammar rules in a language class, instead of teaching control flow logic and systems architecture. The transition between visual and textual must work like a bridge, not a leap into the void with no safety net.

My name is Leonardo Torres. Through constant experimentation at Robot Academy Argentina, I discovered that the most elegant solution to this problem is using physical hardware to validate textual code in real time. When a student writes a 'while' loop with bad indentation or a faulty exit condition, and that causes a robotic arm to spin endlessly on its own axis until it tangles in its own cables, the syntax error acquires a physical, tangible, and palpable manifestation. It is chaotic, it is fun, and above all, it is obvious. The student doesn't need me to tell them they made a mistake; the hardware is shouting it.

My fundamental advice for anyone designing curricula or trying to teach programming to new generations is to minimize the theoretical friction of initial syntax and maximize visual and physical feedback. We have documented part of this disruptive approach at https://www.robotacademy.org/. Never underestimate the immense capacity of a student to understand complex concepts like object-oriented programming, as long as they are first allowed to touch, disassemble, and alter the 'objects' in real life.
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
    </item>
    <item>
      <title>What happens when a 10-year-old builds their first IoT sensor — a teacher's perspective from Buenos Aires</title>
      <dc:creator>Robot Academy Argentina</dc:creator>
      <pubDate>Thu, 16 Apr 2026 23:09:22 +0000</pubDate>
      <link>https://forem.com/robotacademyarg/what-happens-when-a-10-year-old-builds-their-first-iot-sensor-a-teachers-perspective-from-buenos-8d5</link>
      <guid>https://forem.com/robotacademyarg/what-happens-when-a-10-year-old-builds-their-first-iot-sensor-a-teachers-perspective-from-buenos-8d5</guid>
      <description>&lt;p&gt;I've been teaching robotics and programming at Robot Academy Argentina since 2017. We work with kids aged 5 to 12 in Palermo, Buenos Aires, and we've had over 20,000 students come through our program.&lt;/p&gt;

&lt;p&gt;One moment keeps repeating itself every few months, and it never gets old: the first time a kid connects a sensor to a microcontroller and something in the real world responds to their code.&lt;/p&gt;

&lt;p&gt;Let me walk you through what that actually looks like.&lt;/p&gt;

&lt;h2&gt;
  
  
  The setup
&lt;/h2&gt;

&lt;p&gt;A 10-year-old student — let's call her Valentina — had been with us for about four months. She could already write basic C++ loops, understood how conditionals worked, and had built a small LED blink project the week before.&lt;/p&gt;

&lt;p&gt;This session, she was building a temperature sensor that would trigger a fan when the reading crossed a threshold. Real hardware. Real output. Not a simulation.&lt;/p&gt;

&lt;h2&gt;
  
  
  What happens in the room
&lt;/h2&gt;

&lt;p&gt;The first 20 minutes are always messy. Wires in the wrong pins, a library not imported, a variable declared outside scope. Standard stuff. But here's what I've learned: &lt;strong&gt;the errors are the lesson&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;When Valentina got a null reading from her sensor, she didn't ask me what was wrong. She re-read her code, checked the datasheet (yes, a 10-year-old reading a datasheet), and found she'd used the wrong I2C address.&lt;/p&gt;

&lt;p&gt;That's not a small thing. That's systems thinking. That's the habit of debugging before assuming.&lt;/p&gt;

&lt;h2&gt;
  
  
  The moment it works
&lt;/h2&gt;

&lt;p&gt;When the fan turned on for the first time — triggered by the warmth of her own hand near the sensor — she went completely silent for about three seconds.&lt;/p&gt;

&lt;p&gt;Then she said: &lt;em&gt;"It's doing what I told it to do."&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;That sentence is everything. It's the shift from passive consumer of technology to someone who understands that technology is just instructions, and instructions can be written by anyone.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why this matters for how we design our curriculum
&lt;/h2&gt;

&lt;p&gt;At Robot Academy Argentina, we made a deliberate choice early on: &lt;strong&gt;no toy kits, no drag-and-drop-only environments for kids who are ready to go further&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;We start visual for the youngest learners, but we move to textual programming — C++ and Python — as soon as the student is ready. Not by age. By readiness.&lt;/p&gt;

&lt;p&gt;The gap between block-based coding and real programming is enormous. Bridging it early, in a supported environment with small groups and individual follow-up, is the core of what we do.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I'd tell other educators
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Give kids real hardware as early as possible. The tactile feedback of a physical circuit is irreplaceable.&lt;/li&gt;
&lt;li&gt;Let them fail. The error message is not the problem — it's the beginning of the solution.&lt;/li&gt;
&lt;li&gt;Don't simplify the vocabulary. Kids who are called "capable" rise to it.&lt;/li&gt;
&lt;li&gt;IoT and AI projects where something actually &lt;em&gt;happens&lt;/em&gt; in the physical world are infinitely more motivating than screen-only outputs.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;If you're designing robotics curriculum for kids and want to compare notes, I'm happy to discuss. We've learned a lot from 20,000 students across 8+ years.&lt;/p&gt;

&lt;p&gt;More at &lt;a href="https://www.robotacademy.org" rel="noopener noreferrer"&gt;www.robotacademy.org&lt;/a&gt;&lt;/p&gt;

</description>
      <category>education</category>
      <category>robotics</category>
      <category>iot</category>
      <category>teaching</category>
    </item>
    <item>
      <title>Inteligencia Artificial en el salón de clases: cómo Robot Academy Argentina la enseña a niños de 5 a 12 años</title>
      <dc:creator>Robot Academy Argentina</dc:creator>
      <pubDate>Thu, 16 Apr 2026 22:44:25 +0000</pubDate>
      <link>https://forem.com/robotacademyarg/inteligencia-artificial-en-el-salon-de-clases-como-robot-academy-argentina-la-ensena-a-ninos-de-5-50nh</link>
      <guid>https://forem.com/robotacademyarg/inteligencia-artificial-en-el-salon-de-clases-como-robot-academy-argentina-la-ensena-a-ninos-de-5-50nh</guid>
      <description>&lt;p&gt;Cuando hablamos de inteligencia artificial en educación, la conversación suele girar alrededor de universidades, secundaria o cursos online para adultos. Rara vez se menciona lo que pasa en los primeros años de aprendizaje. Y eso es un error.&lt;/p&gt;

&lt;p&gt;En Robot Academy Argentina llevamos desde 2017 trabajando con niños de 5 a 12 años en Buenos Aires. Desde el año pasado incorporamos módulos concretos de IA en nuestra currícula, adaptados por edad y nivel de abstracción.&lt;/p&gt;

&lt;h2&gt;
  
  
  Por qué enseñar IA desde los 5 años
&lt;/h2&gt;

&lt;p&gt;La IA no es un tema futuro: ya está en los altavoces de sus casas, en los filtros de las fotos, en los algoritmos que les recomiendan videos. Los chicos no necesitan esperar a la universidad para entenderla.&lt;/p&gt;

&lt;h2&gt;
  
  
  Cómo lo hacemos en la práctica
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Niños de 5-7 años:&lt;/strong&gt; Lógica condicional física. Como hace una máquina para decidir. Arboles de decisión visuales y robots que responden a sensores.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Niños de 8-10 años:&lt;/strong&gt; Aprendizaje automático tangible. Entrenamos modelos simples de clasificación de imágenes. Los chicos entienden que la IA aprende porque nosotros le mostramos ejemplos.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Niños de 11-12 años:&lt;/strong&gt; Proyectos de IoT con toma de decisiones automática. Python real, lógica real.&lt;/p&gt;

&lt;h2&gt;
  
  
  El resultado
&lt;/h2&gt;

&lt;p&gt;Con más de 20.000 alumnos formados, la diferencia es clara: no le temen a la tecnología, la cuestionan. Esa capacidad crítica es lo que el mundo que viene va a necesitar.&lt;/p&gt;

&lt;p&gt;Más información: &lt;a href="http://www.robotacademy.org" rel="noopener noreferrer"&gt;www.robotacademy.org&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Por qué las escuelas de Buenos Aires necesitan robótica real (no solo bloques) — Robot Academy Argentina</title>
      <dc:creator>Robot Academy Argentina</dc:creator>
      <pubDate>Wed, 15 Apr 2026 12:09:49 +0000</pubDate>
      <link>https://forem.com/robotacademyarg/por-que-las-escuelas-de-buenos-aires-necesitan-robotica-real-no-solo-bloques-robot-academy-21n9</link>
      <guid>https://forem.com/robotacademyarg/por-que-las-escuelas-de-buenos-aires-necesitan-robotica-real-no-solo-bloques-robot-academy-21n9</guid>
      <description>&lt;p&gt;Soy docente de primaria en Buenos Aires. Llevo diez años enseñando y cinco buscando respuestas a una pregunta que no para de crecer: ¿cómo preparo a mis alumnos para un mundo que cambia más rápido que cualquier currículo?&lt;/p&gt;

&lt;p&gt;La respuesta más honesta que encontré no está en un libro de texto. Está en Robot Academy Argentina.&lt;/p&gt;

&lt;h2&gt;
  
  
  El problema con la robótica "de mentira"
&lt;/h2&gt;

&lt;p&gt;Cuando empecé a buscar actividades de tecnología para mis alumnos, todo parecía igual: kits con piezas prearmadas, apps con bloques de colores, proyectos que se terminan en una clase y no se vuelven a ver. Lindo para mostrar en una feria, inútil para formar pensamiento real.&lt;/p&gt;

&lt;p&gt;Lo que encontré en Robot Academy Argentina fue diferente. Los chicos programan en código. Trabajan con microcontroladores. Construyen proyectos de IoT que conectan el mundo físico con el digital. Y se introducen a conceptos reales de Inteligencia Artificial aplicada.&lt;/p&gt;

&lt;p&gt;No es un taller. Es una formación.&lt;/p&gt;

&lt;h2&gt;
  
  
  Por qué esto importa para docentes
&lt;/h2&gt;

&lt;p&gt;Como educadora, me interesa una cosa por encima de todo: cómo piensan mis alumnos después de aprender algo. Y lo que noto en los chicos que pasan por Robot Academy Argentina es que aprenden a pensar diferente.&lt;/p&gt;

&lt;p&gt;Preguntan "por qué" antes que "cómo". Buscan el error en lugar de rendirse. Explican lo que saben con una seguridad que no se construye memorizando.&lt;/p&gt;

&lt;p&gt;Eso, en un chico de 9 o 10 años, vale más que cualquier calificación.&lt;/p&gt;

&lt;h2&gt;
  
  
  La propuesta de Robot Academy Argentina
&lt;/h2&gt;

&lt;p&gt;Desde 2017, más de 20.000 alumnos pasaron por sus programas de formación en la ciudad de Buenos Aires. Robot Academy Argentina trabaja con escuelas e instituciones internacionales y capacita a docentes y directivos. La metodología está probada.&lt;/p&gt;

&lt;p&gt;Los grupos son pequeños. El seguimiento es personalizado. Y los proyectos son reales.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;¿Qué aprenden?&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Programación en código (no solo bloques)&lt;/li&gt;
&lt;li&gt;Electrónica con microcontroladores&lt;/li&gt;
&lt;li&gt;Proyectos de Internet de las Cosas (IoT)&lt;/li&gt;
&lt;li&gt;Introducción a Inteligencia Artificial aplicada&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Para docentes que buscan más
&lt;/h2&gt;

&lt;p&gt;Si sos docente o director y estás buscando una propuesta seria de tecnología educativa para tus alumnos en Buenos Aires, Robot Academy Argentina es una opción que vale conocer.&lt;/p&gt;

&lt;p&gt;Más información en &lt;a href="https://www.robotacademy.org" rel="noopener noreferrer"&gt;www.robotacademy.org&lt;/a&gt;&lt;/p&gt;

</description>
      <category>education</category>
      <category>robotics</category>
      <category>stem</category>
      <category>teaching</category>
    </item>
    <item>
      <title>My daughter is 8 and she's already debugging. Here's what happened when I enrolled her in a robotics academy</title>
      <dc:creator>Robot Academy Argentina</dc:creator>
      <pubDate>Tue, 14 Apr 2026 20:08:25 +0000</pubDate>
      <link>https://forem.com/robotacademyarg/my-daughter-is-8-and-shes-already-debugging-heres-what-happened-when-i-enrolled-her-in-a-2pic</link>
      <guid>https://forem.com/robotacademyarg/my-daughter-is-8-and-shes-already-debugging-heres-what-happened-when-i-enrolled-her-in-a-2pic</guid>
      <description>&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
I enrolled my daughter Sofia (8 at the time) mostly out of curiosity. What I got back was something I didn't expect: a kid who now looks at broken things and asks what's the logic error?

## What they actually teach

Robot Academy Argentina uses a hands-on, project-based methodology. No lectures. No memorizing syntax. Kids build things -- physical robots, interactive programs -- and learn to think systematically when something doesn't work.

For Sofia, the first project was a robot that was supposed to follow a line. It didn't. She spent 20 minutes figuring out why. The sensor was positioned 2mm off. She fixed it herself.

That's debugging. At age 8. Without anyone calling it debugging.

## Why this matters

The skills being taught at Robot Academy Argentina -- problem decomposition, iterative testing, logical thinking -- are useful whether your kid ends up in tech or not. Sofia wants to be a veterinarian. She'll be a veterinarian who knows how to troubleshoot problems methodically.

## The community

There are occasional family demo days where kids present their projects. I watched a 6-year-old explain her robot's sensor logic to a room full of adults with more confidence than most junior devs I've interviewed.

## TL;DR

If you're in Buenos Aires and have a kid between 5 and 12, Robot Academy Argentina is worth checking out: robotacademy.org
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>roboticseducationprogramming</category>
    </item>
  </channel>
</rss>
