Reorder ids to match physical layout

This commit is contained in:
GHOSCHT 2022-04-10 22:13:06 +02:00
parent 30fc7140eb
commit 9a5d3cbc93

View file

@ -10,7 +10,7 @@ justify-content: space-between;
margin: 1rem;
`;
const ids: number[] = [0, 1, 2, 3];
const ids: number[] = [2, 3, 1, 0];
const KnobSection = () => {
const serialConnection = useAppSelector((state) => state.serialConnection);