Maker Pro
Arduino

Franzininho Online Simulator! by Wokwi

June 28, 2021 by share Open-Tech
Share
banner

Free Franzininho online Simulator lets you simulate your projects using a browser. No hardware components are needed!

Introduction to Franzininho Online Simulator

You will learn programming Franzininho online faster. We will be using the Franzininho online simulator by Wokwi. You will find a good collection of examples for you to get started with!

Franzininho Online Simulator

Franzininho Online Simulator -snapshot taken from Blink an LED

Franzininho virtual simulator - Blink an LED project

Live project Link

Code

The code for the Franzininho - Blink and LED project

/*
  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
}

Connection diagram - Franzininho - Blink an LED project

Blink an LED - Franzininho online Simulator

Blink an LED - Franzininho online Simulator

Simulation output - Franzininho Blink an LED project

Wokwi Franzininho online Simulator Blink an LED example

Wokwi Franzininho online Simulator Blink an LED example

Author

Avatar
share Open-Tech

Hardware enthusiast with ample interest in Arduino projects

Related Content

Categories

Comments


You May Also Like