“Arduino czeka” Kod odpowiedzi

Golang Sleep

package main

import (
    "fmt"
    "time"
)

func main() {
    fmt.Printf("Current Unix Time: %v\n", time.Now().Unix())

    time.Sleep(2 * time.Second)

    fmt.Printf("Current Unix Time: %v\n", time.Now().Unix())
}
Bugs Bunny

Poczekaj na czas JavaScript

//code before the pause
setTimeout(function(){
    //do what you need here
}, 2000);
PutterBeanut

Arduino czeka

delay(1000) // in ms
Pan Dziad

Odpowiedzi podobne do “Arduino czeka”

Pytania podobne do “Arduino czeka”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu