blender-edutech-tutoriels/labyrinthe/6-jumeaux/test/servo-test/servo-test.ino

31 lines
961 B
Arduino
Raw Normal View History

#include "servo.h"
/******************************************************************************
* servo-test.ino
* @title: Programme pour la carte Arduino (2 servomoteurs)
* @project: Blender-EduTech - Tutoriel 6 : Labyrinthe à bille - Développer le jumeau numérique du labyrinthe
* @lang: fr
* @authors: Philippe Roy <philippe.roy@ac-grenoble.fr>
* @copyright: Copyright (C) 2023 Philippe Roy
* @license: GNU GPL
*
******************************************************************************/
/******************************************************************************
* Initialisation
******************************************************************************/
void setup() {
// Liaison série
Serial.begin(115200);
}
/******************************************************************************
* Boucle principale
******************************************************************************/
void loop() {
}