
Bring Redstone to life! A simple mod to connect Arduino and Minecraft via serial port. No complications, just plug and play.
The Bridge Between Worlds
Connect your Arduino to Minecraft Java (Fabric 1.21.10) and bring electronics into Survival mode.
Full Guide & Wiki: https://leonardoaliaga.github.io/SerialCraft/
SerialCraft is a mod that breaks the fourth wall, allowing real-time bidirectional communication between the game and external electronic devices (Arduino, ESP32, Raspberry Pi Pico, etc.).
Unlike other technical mods, SerialCraft is designed to integrate organically into the Survival experience. No magic commands—you build the hardware, you configure the connections, and you craft the logic.

The brain of the operation. It handles the USB connection to your real-world device.


The physical bridge. This block connects to the Laptop wirelessly (logic-wise) and interacts with Redstone.
Target ID (e.g., LED_1 or SENSOR_A) and the signal type (Analog vs Digital).


Communication is text-based using KEY:VALUE format ending with a newline (\n).
Arduino Example:
void setup() {
Serial.begin(9600); // Matches the Laptop Block settings
}
void loop() {
// Send data to Minecraft (Block ID "btn_1", Value 15)
Serial.println("btn_1:15");
delay(50);
}