ATtiny85 Link Problem

#include "DigiKeyboard.h"

void setup() {
// Empty setup function
}

void loop() {
// Type out the string letter by letter on the computer (assumes German-style keyboard)
DigiKeyboard.sendKeyStroke(KEY_H, MOD_CONTROL_LEFT); // Open a new tab (Ctrl + H on German keyboard)
DigiKeyboard.delay(500);
DigiKeyboard.print("https://www.youtube.com/watch?v=xvFZjo5PgG0");
DigiKeyboard.sendKeyStroke(KEY_ENTER); // Press Enter to open the website
DigiKeyboard.delay(5000); // Wait for the website to load

// Add any additional actions or delays as needed

// End the loop
while (1);
}

Every time I plug in my ATtiny85 it doesnt type the link the right way, anybody know how to fix this, i have a german keyboard layout.

When you post in a category please read what it is about.
You posted where you are not permitted to post.

Do not pass up reading the how to use this forum that you were directed to but decided to ignore.

I moved your post here.

You are working on an informatic project and what is most needed in an informatic project is information.

You refused to read the "How to get the best out of this forum"
This tutorial would have told you that you should post a detailed description
This tutorial would have told you how to post code as a codesection

trying to be fast turns out to slow things down.

You should post links to the DigiKeyboard-library on github
you should post your code as a code-section
you should post what is really typed in the inputfield where the url is typed into it
letter by letter what does the code type

best regards Stefan

Describe "doesn't" and "the right way."

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.