Skip to content
Snippets Groups Projects
Unverified Commit 603bf7e1 authored by Charles Javerliat's avatar Charles Javerliat
Browse files

Add reprise

parent c2207910
No related branches found
No related tags found
No related merge requests found
......@@ -107,6 +107,21 @@ void estimatedScoreCallback(const std_msgs::Int32 &estimatedScoreMsg)
void loop()
{
if (!nh.connected())
{
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("Waiting ROS...");
while (!nh.connected())
{
nh.spinOnce();
delay(MSG_SENDING_INTERVAL);
}
refreshScreen();
}
// DEBUT PARTIE TIRETTE
int pullCordReading = digitalRead(pullCordPin);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment