How to reproduce:
I created this minimal example with vscode/platformio and an additional LED toggle to see something in the simulation:
In SimulIDE I just create a new empty circuit and:
After that I can see the LED blinking, but there is no serial output. Is there something I am doing wrong, or is this a known defect?
I tried with simulide_0.4.14-SR4.AppImage, simulide_0.4.15-SR1.AppImage and SimulIDE_0.4.15-SR1_Lin64.tar.gz.
Thanks for help
I created this minimal example with vscode/platformio and an additional LED toggle to see something in the simulation:
- Code:
#include <Arduino.h>
bool ledState = false;
void setup() {
pinMode(LED_BUILTIN, OUTPUT);
Serial.begin();
}
void loop() {
Serial.println("toggle");
ledState = !ledState;
digitalWrite(LED_BUILTIN, ledState ? HIGH : LOW);
delay(500);
}
In SimulIDE I just create a new empty circuit and:
- added a Leonardo board
- loaded the hex file.
- opened serial monitor with "Open Serial Monitor."
- run simulation
After that I can see the LED blinking, but there is no serial output. Is there something I am doing wrong, or is this a known defect?
I tried with simulide_0.4.14-SR4.AppImage, simulide_0.4.15-SR1.AppImage and SimulIDE_0.4.15-SR1_Lin64.tar.gz.
Thanks for help