Floppy Lab
Published © CERN-OHL2

The perfect cheap Arduino alternative? (Floppy Boards)

Floppy Boards are a series of breakout boards for rapid prototyping developed as a cheap alternative of Arduino, with a lot of potential!

IntermediateWork in progress8,062
The perfect cheap Arduino alternative? (Floppy Boards)

Things used in this project

Software apps and online services

Arduino IDE
Arduino IDE

Story

Read more

Schematics

Schematic Floppy Board 3.1

This is the schematic of the Floppy Board 3.1, you can also find the Kicad project on my Git-Hub

Pinout of the Floppy Board 3.1 (32kB FLASH version)

Code

test_fb.ino

Arduino
void setup() {
  pinMode(PC_15, OUTPUT);
  Serial.begin(9600);
  Serial.setTx(PA_9);
  Serial.setRx(PA_10);
}

void loop() {
  digitalWrite(PC15,HIGH);
  delay(250);
  digitalWrite(PC15,LOW);
  delay(250);
  Serial.println("I'm working!!");
}

Credits

Floppy Lab

Floppy Lab

5 projects • 8 followers
Hi I'm Filippo, and I’m an electronic engineering student passion for DIY. I enjoy building small IoT systems and some robotics projects.

Comments