100%
GRIMOIRE
GrimoireDindon CorpusSynthesis VolumesThe Foundation of Iron
FRENAR
HUMAN
PEDAGOGICAL GUIDE · OPÉRATION DINDON · JUNE 2026
◆◆◆
THE ANTI-AMPUTATION
FOUNDATION
The Minimum to Prevent the Amputation from Happening
A Thread for Teachers Who Decide to Act
◆ WHAT THIS DOCUMENT IS NOT

This document is not an official curriculum. It is not subject to academic validation. It requires no authorisation from inspectors, school leadership, or the ministry. It is a suggested logical sequence for maths, physics and technology teachers who decide to act against amputation without waiting for anyone to tell them to. It is applicable tomorrow, with equipment available in most schools, for zero or near-zero additional budget.

◆◆◆
LEVELS
Y7→Y13
HOURS/YEAR
<8h
AUTHORISATION
NONE
REQUIRED
WATERMARK
HUMAN
Amine RAITI — Infrastructure Architect & SRE
Former engineering school professor · Teaching since 2006
Public document · CC BY-NC-SA 4.0 · Opération Dindon · June 2026
HUMAN
PHILOSOPHY · WHAT THIS FOUNDATION AIMS TO PRODUCE
NOT TRAINING — ANCHORING. NOT A CURRICULUM — A THREAD.

The objective of this foundation is not to train engineers. Not to certify competences. Not to fill a referential. It is to deposit, in the memory of every student between 11 and 18, a mental image precise and concrete enough that twenty years later, when the occasion arises, they can say: "I know what that is, I've touched it before."

◆ THE 56-HOUR RULE OVER 7 YEARS

This foundation represents less than 8 hours per year — less than one hour per month. Not a burden. An intention. The intention not to let 7 years pass without a student having touched a machine, written a line of code that moved something in the physical world, or held in their hands an object they made themselves. These 56 hours do not replace official lessons — they complement them with concrete moments that anchor what abstract lessons say without embodying it.

◆ APPLICABLE TOMORROW — MINIMUM CONDITIONS

Phase 1 (Year 7-8, theoretical substrate): zero additional equipment. A board, paper, pens. Water-electricity analogies require no equipment. The physics teacher can integrate these examples into existing lessons without modifying the official curriculum.

Phase 2 (Year 9-10, first contact): one Arduino Starter Kit (€25 on Amazon, delivered in 24h) is enough for a group of 4 students. 4 kits = €100. A pooled fund of 5 teachers at €2/month covers this in 10 months.

Phase 3 (Sixth form, fabrication): the laser engraver (€150), CNC3018 (€180) and Ender-3 (€250) are the only equipment investments. All software is free. Total Phase 3 budget: €580 — one cancelled school trip.

◆ THE LOGICAL SEQUENCE — WHY ORDER MATTERS

One does not start Arduino without having seen current. One does not start CNC without having seen the motor. One does not start 3D printing without having seen the XYZ coordinate system. The sequence is built so each moment builds on the previous one. A student arriving in year 9 without the year 7-8 notions can still do Arduino — but they will understand less well why a resistor is needed before the LED. The sequence is not mandatory. It is recommended because it is logical.

PHASE 1
Year 7 – 8
Theoretical substrate
Electricity · Maths
No equipment
PHASE 2
Year 9 – 10
First contact
Arduino · Laser · CNC
From €25
PHASE 3
Year 11 – 13
Fabrication · Build
CAD · 3D Printing
From €580
HUMAN
PHASE 1 · YEAR 7 – 8 · THEORETICAL SUBSTRATE · ZERO EQUIPMENT
UNDERSTAND BEFORE TOUCHING — THE PHYSICS AND MATHS TEACHER
◆ Y7 T1 — ELECTRICAL CURRENT (2h PHYSICS · equipment: board + chalk)

The water analogy — the model that works: pipe = wire · pressure = voltage (Volt) · flow rate = current (Ampere) · narrowing = resistance (Ohm) · tap = switch. Ohm's Law without formula first: "if you narrow the pipe, less water flows." Then with formula: V = R × I.
What the student takes away: a mental image of electricity as something that flows and can be controlled.
Applicable tomorrow: no equipment. Just the diagram on the board.

◆ Y7 T2 — THE LED AND RESISTOR (1h PHYSICS + 1h MATHS · equipment: paper diagram)

Physics: LED = directional bulb. Polarity: anode (+) / cathode (-). Forward voltage: red LED ~2V, blue ~3.3V. Without resistor, it burns — "connect a garden hose to a high-pressure main, it bursts." Resistor calculation: R = (Vsupply - VLED) / ILED. Example: 9V battery + red LED → R = (9-2)/0.02 = 350Ω → use 330Ω standard.
Maths: proportions, ratios, powers of 10. 1mA = 0.001A. Resistor colour code (bands = digits).
What the student takes away: an LED lights up because someone calculated the resistor. No magic.

◆ Y7 T3 — SERIES AND PARALLEL (2h PHYSICS · equipment: paper diagram)

Series: same current everywhere, voltages add. Parallel: same voltage everywhere, currents add. Water analogy: series pipes = one path; parallel = multiple paths. Paper exercise: 3 LEDs in series, calculate resistor.

◆ Y8 T1 — THE MOTOR (2h PHYSICS · equipment: board)

Current in a coil = magnetic field. Magnetic field + fixed magnet = rotation (DC motor). Multiple coils in sequence = precise, measurable rotation (stepper motor). "200 steps = 1 full turn. The lead screw advances 2mm/turn. 200 steps = precise 2mm." Link to future CNC: each XYZ axis has one stepper motor.
What the student takes away: a CNC machine is three motors following coordinates.

◆ Y8 T2 — THE DIGITAL SIGNAL (1h MATHS + 1h PHYSICS · equipment: board)

Maths: binary base. 0 or 1. 1 byte = 8 bits = 256 values. Why 0-255 for LED brightness.
Physics: 5V = 1, 0V = 0. PWM signal: switch on/off 1000×/second → eye sees 50% brightness. Arduino link: analogWrite(pin, 127) = 50%.

◆ Y8 T3 — THE XYZ COORDINATE SYSTEM (1h MATHS · equipment: graph paper)

2D coordinate system → 3D. Point (25, 30, -2): router 25mm right, 30mm forward, 2mm deep. G-code G1 X25 Y30 Z-2 F800. Exercise: draw a 50×50mm square on graph paper using coordinates. Write the coordinates of all 4 corners.
What the student takes away: the maths lesson's coordinates exist in matter.

HUMAN
PHASE 2 · YEAR 9 – 10 · FIRST CONTACT · FROM €25
TOUCHING TO UNDERSTAND — THE TECHNOLOGY TEACHER
◆ Y9 T1 — ARDUINO: FIRST CONTACT (3h TECHNOLOGY · equipment: Arduino Starter Kit €25)

Lesson 1h: anatomy of Arduino Uno. ATmega328 microcontroller = the brain. Digital pins D0-D13 (0V or 5V). Analog pins A0-A5 (0 to 1023). setup() runs once, loop() repeats. First programme: Blink (provided, 6 lines).
Arduino IDE installation (30min): arduino.cc/downloads → install → plug in → upload Blink → LED L13 blinks.
Lab 1h30 — The blinking LED: each student ALONE wires: Arduino + 330Ω resistor + LED on breadboard. Uploads Blink. Modifies delays. Question: what happens without the resistor? (Phase 1 link: the LED burns.)
Applicable tomorrow: Arduino Starter Kit = €25/4 students. Arduino IDE = free.

◆ Y9 T2 — ARDUINO: SENSORS (3h TECHNOLOGY · equipment: LM35 temperature sensor ~€2)

Lesson 30min: sensor translates physical quantity to voltage. LM35: 10mV/°C. 25°C = 250mV = 51 on 1023 (analogRead). Formula: T = (analogRead(A0) × 5.0 / 1023.0) × 100.
Lab 2h30: wire Arduino + LM35 + red LED. Programme: read T, display on serial monitor, light LED if T > 30°C. Place hand on sensor → T rises → LED lights. Each student writes their own programme from the provided skeleton.

◆ Y9 T3 — ARDUINO: MOTOR (2h TECHNOLOGY · equipment: L298N driver ~€3 + DC motor ~€2)

Lesson 30min: driver = current amplifier. Arduino max 40mA/pin → DC motor consumes 300-500mA → driver required. Phase 1 link: "your CNC has three of these setups, one per axis."
Lab 1h30: wire Arduino + L298N + DC motor. Programme: direction 1 → stop → direction 2 → vary speed with PWM.

◆ Y10 T1 — LASER ENGRAVER (3h TECHNOLOGY · equipment: laser engraver ~€150)

Lesson 1h: laser diode. Power (W) and speed (mm/min): slow = deeper. Materials: wood, cardboard, leather, slate. Forbidden: PVC, polycarbonate.
LaserGRBL software (30min): free, import SVG, set power/speed, simulate path.
Lab 1h30 — The name tag: Inkscape (free) → first name → SVG → LaserGRBL → engrave on plywood. Object to take home. MANDATORY.

◆ LASER SAFETY — ENCLOSURE REQUIRED BEFORE USE

The laser engraver exposes users to direct and diffuse radiation. Goggles alone are insufficient to protect everyone in the room. An enclosure is mandatory. It is built by Year 13 students as the first lab of the year — before the CNC build. This enclosure is an industrial safety engineering project that produces real protective equipment.

DIY enclosure components (total budget: €80):
· 6mm MDF box cut and assembled: €15 — the physical enclosure
· OD4+ laser filter plate 200×300mm (orange/red): €20 — the viewing window. Blocks direct and diffuse radiation from the diode (445nm) while letting visible light through. The operator can watch the machine work safely. Cut with a craft knife, fixed with hinges on the front panel.
· NC (Normally Closed) magnetic limit switch: €2 — wired in series on the laser power supply. If the lid opens, the circuit cuts automatically. No radiation possible with lid open.
· 80mm USB fume extractor: €35 — evacuates combustion fumes towards the outside or filter.
· Activated carbon filter: €8 — fitted to the extractor outlet, captures VOCs and fine particles.

This enclosure legally protects the teacher. An accident with an unenclosed laser engages the teacher's personal liability. With documented enclosure and limit switch, liability is covered by the normal workshop safety framework.

◆ Y10 T2 — CNC3018 THREE MODES (3h) + Y10 T3 — 3D PRINTER (3h TECHNOLOGY)

CNC3018: same G-code → laser burns / router cuts / pen traces. Lab: router a 30×30mm square in softwood, 4 passes Z-0.5mm. "Your maths lesson's XYZ exists in matter."
3D Printer: FDM = melted filament deposited layer by layer. PLA at 200°C. Cura (free): open STL, modify layer height/infill, estimate time. Lab: Tinkercad (web, free) → personalise pen holder → Cura → print. During printing: review settings and their effects.

HUMAN
PHASE 3 · YEAR 11 – 13 · FABRICATION · FROM €580
BUILDING TO UNDERSTAND — THE ANNUAL MASTERPIECE
◆ YEAR 11 — CAD AND 3D PRINTING (8h spread · software: FreeCAD free + Cura free)

T1 (2h) — FreeCAD: parametric modelling. Model a phone stand with 3 modifiable dimensions. Export STL.
T2 (2h) — Advanced Cura: optimal orientation, avoid supports, calculate material cost (density × volume × price/kg).
T3 (2h) — Post-processing: remove supports, sand, paint.
T4 (2h) — Free project: student proposes, designs and prints a useful object. Constraints: one parametric dimension, no supports, infill < 30%.

◆ YEAR 12 — CNC AND ADVANCED ENGRAVING (8h spread · software: Inkscape + LaserGRBL free)

T1 (2h) — Advanced Inkscape: bitmap vs vector. Repetitive geometric pattern. Export DXF for CNC, SVG for laser.
T2 (2h) — Photo on wood: greyscale conversion, dithering, personal photo engraved on birch plywood.
T3 (2h) — Aluminium machining: cutting parameters, spindle speed × drill diameter = cutting speed.
T4 (2h) — Mixed assembly: CNC casing + laser face + 3D printed clips. Assembly tolerance: allow 0.2mm clearance.

◆ YEAR 13 — BUILDING AN OPEN SOURCE MACHINE (12h spread)

Group of 4 to 6 students. An open source CNC or 3D printer built over the school year. The machine stays in the school after graduation.

T1 (3h) — Architecture: read MPCNC or Voron documentation. Identify each component. Order parts. Print plastic parts on the school's Ender-3.
T2 (3h) — Mechanics: assemble the frame, install bearings and lead screws. Understand why mechanical play degrades precision.
T3 (3h) — Electronics and firmware: wire A4988 drivers, RAMPS board. Configure Marlin: steps/mm, motor current. First homing: the machine finds its zero.
T0 (3h — FIRST LAB, SEPTEMBER) — Build the laser enclosure: before any other project, students build the laser machine enclosure. MDF box, OD4+ filter plate (orange viewing window), NC magnetic limit switch wired on the power supply, extractor + carbon filter. This lab is an introduction to industrial safety engineering. The laser machine is only used in the school once this enclosure is operational and tested.

T1 (3h) — Architecture: read MPCNC or Voron documentation. Identify each component. Order parts. Print plastic parts on the school's Ender-3.
T2 (3h) — Mechanics: assemble the frame, install bearings and lead screws. Understand why mechanical play degrades precision.
T3 (3h) — Electronics and firmware: wire A4988 drivers, RAMPS board. Configure Marlin: steps/mm, motor current. First homing: the machine finds its zero.
T4 (3h) — Calibration and masterpiece: 20×20×20mm calibration cube, measure with caliper, adjust steps/mm. Final part. Present the machine to other students.

T5 — THE MACHINE RUNBOOK (2h — MANDATORY): before the end of the school year, students collectively write the maintenance Runbook for each machine built or used in the school. This document contains: startup procedure, calibration procedure, common faults and solutions, contact in case of hardware problem, date of last maintenance. The Runbook is printed, laminated, and hung next to each machine. It is updated by each subsequent cohort — the first act of institutional transmission. The anti-amputation foundation does not depend on the dedication of one teacher. It depends on collective documentation.

What the student who built a CNC understands: the 7 years of anti-amputation foundation condensed into one object — code controls electricity that controls motors that follow XYZ coordinates that transform matter.

HUMAN
SUMMARY · OVERVIEW · THE THREAD
56 HOURS OVER 7 YEARS · LESS THAN ONE HOUR PER MONTH
YEAR
HOURS
SUBJECTS
WHAT IS TOUCHED
EXTRA BUDGET
Year 7
6h
Physics + Maths
Nothing — pure theory
€0
Year 8
5h
Physics + Maths
Nothing — pure theory
€0
Year 9
8h
Technology
Arduino + breadboard
€25/4 students
Year 10
9h
Technology
Laser + CNC3018 + Ender-3
€580 (once)
Year 11
8h
Technology
FreeCAD + Ender-3
€0 (already there)
Year 12
8h
Technology
Inkscape + Laser + CNC
€0 (already there)
Year 13
12h
Technology
Build open source CNC
€200 kit + parts
TOTAL
56h
3 subjects
From theory to masterpiece
~€805 over 7 years
◆ WHAT €885 OVER 7 YEARS REPRESENTS

€885 over 7 years (€805 equipment + €80 laser safety) = €126/year = €10.50/month for 12 teachers = less than one lunch per month per teacher. Not a budget — a decision. All software is free and open source.

◆ THE APE → EPLE DEED OF GIFT — MAKING MACHINES LEGALLY ENTER THE SCHOOL

Machines purchased by the pooled fund must enter the school's official inventory to be insured and legally used. The mechanism: gift from the parents' association (APE) to the school (EPLE) by Board of Governors resolution.

Two-step procedure:
1. The APE votes at its general assembly: "The association decides to donate to EPLE [name] the following equipment: [list of machines + value], purchased from association funds for educational purposes."
2. The school's Board of Governors votes to accept the gift at its next ordinary session. Once voted, the head teacher signs the acceptance deed, the machines enter the inventory, and are covered by the local authority's insurance.

Actual timeline: two meetings (APE + Board). No public procurement procedure for gifts. No additional school budget. The head teacher can place this item on the Board agenda at the first session following the APE vote.

◆ THE TEACHING BODY AS COLLECTIVE ACTOR — THE HEAD TEACHER AS BODY MEMBER

This foundation does not work if each teacher acts alone. It works if the teaching body acts as a body. Concretely:

Maths, physics and technology teachers write a collective request to the head teacher — signed by all — asking for active support to: place the APE→EPLE deed of gift on the Board agenda, contact the local authority for potential complementary funding for the laser enclosure, and officially recognise the anti-amputation foundation as a school pedagogical initiative.

The head teacher is a member of the teaching body. They have the same responsibility for deamputation as the physics teacher. A documented, collectively signed request engages them differently from an individual request — harder to ignore, easier to defend to their own hierarchy, and protects everyone. The head teacher who accelerates the legal procedures becomes co-author of the foundation. The head teacher who blocks a documented collective request personally assumes responsibility for the inaction.

Other teachers — history, French, arts, languages — can support the approach without being its carriers. Their signature on the collective request says: the entire teaching body of this school has voted that the amputation will not happen here.

◆◆◆

This foundation does not ask for permission.
It asks for a decision — the decision not to let 7 years pass
without a student holding in their hands an object they made.

NEMO SUPRA LEGEM EST