import React, { useState } from "react"; import { createGlobalStyle } from "styled-components"; import SerialPort from "serialport"; import Knob from "./Components/Knob"; import SerialConnection from "./SerialConnection"; const GlobalStyle = createGlobalStyle` html { border-style: solid; border-color: #363636; border-width: 1px; box-sizing: border-box; height: 100%; border-bottom-style: hidden; border-right-style: hidden; } `; const port = SerialConnection(); const App = () => { const [counter, setCounter] = useState(0); const sendIncreaseHandler = () => { setCounter(counter + 1); port.write("2i"); }; const sendDecreaseHandler = () => { setCounter(counter - 1); port.write("2d"); }; const sendToggleHandler = () => { port.write("2t"); }; return (
); }; export default App;