Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

No output in connected console #1

Open
tomasz90 opened this issue Aug 2, 2024 · 0 comments
Open

No output in connected console #1

tomasz90 opened this issue Aug 2, 2024 · 0 comments

Comments

@tomasz90
Copy link

tomasz90 commented Aug 2, 2024

Here is my sketch:

#include <Arduino.h>
#include "AsyncTelnetSerial.h"

#define BAUD_RATE 115200

AsyncTelnetSerial telnetSerial(&Serial);

void setup() {
    Serial.begin(BAUD_RATE);
    WiFi.mode(WIFI_STA);
    WiFi.begin(WIFI_SSID, WIFI_PASS);
    WiFi.setAutoReconnect(true);
    while (WiFi.waitForConnectResult() != WL_CONNECTED) {
        delay(2000);
        ESP.restart();
    }
    telnetSerial.begin();
}

void loop() {
    Serial.print("Hello World");
    delay(1000);
}

Despite being able to connect to my device, I don't see any output... I would like to see "hellow world", Is there any issue?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant