flowchart LR A(("Software setup")) --> B(("Network setup")) B --> C(("Hardware check: camera and audio")) C --> D(("Google Gemini")) C --> E((" Linux ROS2 ")) E --> F(("camera view")) E --> G(("line following")) %% Define custom styles for each node classDef nodeStyle width:150px, text-align:center, white-space:pre-wrap; classDef coloredNode fill:#1f96,stroke:#333,stroke-width:2px,width:150px,white-space:pre-wrap,text-align:center; %% Apply the custom style to the nodes class A,C,D,E,F,G nodeStyle; class B coloredNode; %% Add slide references to each block (adjust according to your presentation setup) click A "#software" "Go to Software setup slide" click B "#network" "Go to Network setup slide" click C "#hardware" "Go to Hardware slide" click D "#gemini" "Go to Google Gemini slide" click E "#ros2" "Go to ROS slide" click F "#ros2" "Go to ROS slide" click G "#linefollowing" "Go to ROS line following slide"