Fix incorrect variable name in checkWheelDrop function

This commit is contained in:
ishak jmilou.ishak
2024-10-07 09:40:04 +02:00
parent c0edf4d1f7
commit edd80f9000

View File

@@ -36,7 +36,7 @@ int checkCenterCliff()
int checkWheelDrop(){ int checkWheelDrop(){
while (true) while (true)
{ {
std::cout << "wheeldropdata:" << robot.data.WheelDrop << std::endl; std::cout << "wheeldropdata:" << robot.data.WheelDropLeft << std::endl;
} }
} }