Projektarbeit Line Following Robot bei Prof. Chowanetz im WS22/23
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

main.cpp 275B

1234567891011121314
  1. #include <iostream>
  2. #include "lfr_state_machine.h"
  3. #include "lfr_states.h"
  4. int main(void)
  5. {
  6. std::cout << "started central" << std::endl;
  7. // Init State Machine;
  8. std::cout << "create State Machine" << std::endl;
  9. LFR_StateMachine stateMachine;
  10. return 0;
  11. }