Keine Bibliothek

Hello dear people!
I'm sure the four thousandth crying beginner because "no library found"
Is that the latest state of things? Can no one really help with a one-line info?
Sincerely, Portim

Hallo liebe Leute!
Bin sicher der viertausendste weinende Beginner weil "keine Bibliothek gefunden"
Ist das der neueste Stand der Dinge? Kann da wirklich keiner helfen?
Herzlichst Portim

Please post full error message for proper advise.

Bitte senden Sie die vollständige Fehlermeldung, um eine ordnungsgemäße Beratung zu erhalten.

Library not found? Sound like you #include'ed a library that you don't have installed, or have installed incorrectly.

WE would love to help, however there is not enough detail for me to assess what is wrong.

What would be helpful is the library that you are trying to use and or the complete error you are seeing.

Hello dear people!
I'm sure the four thousandth crying beginner because "no library found"
Is that the latest state of things? Can no one really help with a one-line info?
Sincerely, Portim

Hallo liebe Leute!
Bin sicher der viertausendste weinende Beginner weil "keine Bibliothek gefunden"
Ist das der neueste Stand der Dinge? Kann da wirklich keiner helfen?
Herzlichst Portim

Der Sketch verwendet 2232 Bytes (6%) des Programmspeicherplatzes. Das Maximum sind 32256 Bytes.
Globale Variablen verwenden 37 Bytes (1%) des dynamischen Speichers, 2011 Bytes für lokale Variablen verbleiben. Das Maximum sind 2048 Bytes.

Ungültige Bibliothek C:\Users\Admin\Documents\Arduino\libraries\sketch_jul22a in keine Header-Dateien (.h) in C:\Users\Admin\Documents\Arduino\libraries\sketch_jul22a gefunden gefunden
Mit "Bibliotheken verwalten" installiert
Installed with "Manage Libraries"

#include <Stepper.h>
int SPU = 2048;
Stepper Motor(SPU, 3, 5, 4, 6);
int Taster = 7; // Taster an Pin7
int Tasterstatus = 0; // Variable für den Status des Tasters
void setup()
{
Motor.setSpeed(5);
pinMode(Taster, INPUT);
}
void loop()
{
Tasterstatus = digitalRead(Taster); //Zunächst wird der Taster abgefragt.
while (Tasterstatus == HIGH) //Solange der Wert des Tasters HIGH, also gedrückt ist...
{
delay(1); //...springt der Sketch in diese Klammer und verbleibt hier.
} //Wenn der Taster jedoch nicht mehr gedrückt ist, springt der Sketch in den regulären Loop zurück und führt dort weitere Befehle aus.
Motor.step(1); //...drehe den Motor um einen Schritt.
} //Jetzt beginnt der Sketch von vorn. Solange der Taster nicht gedrückt ist, wird die "While"
//Funktion nicht ausgeführt und der Motor dreht sich Schritt für Schritt weiter // put your setup code here, to run once:

Sincerely Portim

It's only a warning, so a smaller problem.

Why do you have a sketch_jul22a in the libraries directory? If there are no files in there, delete that directory.

If there are files in there, which ones?

Dear sterretje!
Thank`s for your friendly helpness. Now it works fun.
Sincerely Portim