@@ -3,11 +3,15 @@
Ampel::Ampel()
{
this->running = 1;
}
void Ampel::setStop(){
this->running = 0;
void Ampel::run(){
int anzahl = 0;
while(1){
while(this->running){
anzahl++;
if(anzahl < 6){
usleep(800000);
The note is not visible to the blocked user.