Hack star
Published © CC0

Franzininho Online Free Simulator - 2022

Franzininho online simulator enables you to simulate your next Franzininho project. You can easily share your projects online with others

BeginnerProtip1 hour259

Things used in this project

Hardware components

franzininho
×1
LED (generic)
LED (generic)
×1

Story

Read more

Schematics

Connection diagram

Code

Franzininho blink an LED - Simulator code

Arduino
/*
  Franzininho Blink
  Visit https://wokwi.com to learn about the Wokwi Simulator
  Visit https://franzininho.com.br to learn about the Franzininho
*/
#define LED 1               // Pino digital conectado ao LED

void setup() {
  pinMode(LED, OUTPUT);     // Pino digital de saída
}

void loop() {
  digitalWrite(LED, HIGH);  // Acende o LED
  delay(1000);              // Aguarda um segundo
  digitalWrite(LED, LOW);   // Apaga o LED
  delay(1000);              // Aguarda um segundo
}

Credits

Hack star
75 projects • 141 followers
an Arduino enthusiast and an electronic hobbyist
Contact

Comments

Please log in or sign up to comment.