Objectif
Exécute les tâches de routine de la CrcLib
. Entre autres, permet au CRCduino de contrôler les indicateurs lumineux, le son et les servos et de communiquer avec le contrôleur.
Quand l’utiliser
En boucle, dans tous les programmes CrcLib
.
Où l’utiliser
Dans la partie void loop()
du fichier .ino
.
Un appel régulier à cette fonction est absolument vital au bon fonctionnement de la CrcLib. Il devrait être fait au maximum à chaque 10ms. Pour ce faire, la fonction void loop()
devrait s’exécuter le plus rapidement possible. Il est également possible d’appeler la fonction CrcLib::Update()
à plus d’une fois si loop
prend trop de temps.
Valeur de retour
Aucune
Prototype principal et paramètres
static void CrcLib::Update()
Les paramètres suivants sont nécessaires à la fonction:
Aucun.
Overloads
Aucun, seul le prototype principal peut être utilisé.
Examples
Plus à propos de cette fonction
Il n’y a malheureusement rien de plus à dire sur cette fonction…
Related articles
-
CrcLib Basic Programs (Système CrcDuino System) —
This page presents the most basic programs that should first be tried out by every program when first getting their hands on a CrcDuino.
Minimal program
-
GetBatteryVoltage() (Système CrcDuino System) —
Purpose
Read the potential difference between the 12V and GND green terminals (the board supply voltage).
When to use
-
GetDeltaTimeMicros() (Système CrcDuino System) —
Purpose
Gives you the execution time of your code in microseconds.
When to use
-
GetDeltaTimeMillis() (Système CrcDuino System) —
Purpose
Gives you the execution time of your code in milliseconds.
When to use
-
Initialize() (Système CrcDuino System) —
Purpose
Sets up the board to be able to run the
CrcLib
library properly.When to use
-
PrintControllerState() (Système CrcDuino System) —
Purpose
Print the received state of the controller attached to the CrcConnect.
When to use
-
PrintControllerState() {FR} (Système CrcDuino System) —
Purpose
Print the received state of the controller attached to the CrcConnect.
When to use
-
Timer (Système CrcDuino System) —
Purpose
Delay a task in time or make it repeat periodically without blocking the CrcDuino.
When to use
-
Timer {FR} (Système CrcDuino System) —
Purpose
Delay a task in time or make it repeat periodically without blocking the CrcDuino.
When to use
-
Update() (Système CrcDuino System) —
Purpose
Updates all
CrcLib
members and routines. This allows the CrcDuino to update its time, LEDs, buzzer, inputs, and any other continuous functionality like communicating with the CrcConnect module.When to use
Add Comment