Change folder structure (multiple boards)

- add second pcb board_control, currently copy of previous board
- not enough pins -> board_control handle ui send motorcommands via uart
  board_motorctl handle motors
This commit is contained in:
jonny_jr9
2023-08-28 11:15:06 +02:00
parent 224ac47214
commit b03baa4687
69 changed files with 32730 additions and 1399 deletions

14
board_control/react-app/src/index.js vendored Normal file
View File

@@ -0,0 +1,14 @@
import React from 'react';
import ReactDOM from 'react-dom/client';
import App from './App';
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(
<React.StrictMode>
<App />
</React.StrictMode>
);
// If you want to start measuring performance in your app, pass a function
// to log results (for example: reportWebVitals(console.log))
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals