import React from "react"; import SerialPort from "serialport"; import { createGlobalStyle } from "styled-components"; import Knob from "./Components/Knob"; 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 App = () => { const port = new SerialPort("COM5", { baudRate: 9600, autoOpen: false, }); const handler = () => { // eslint-disable-next-line port.write("off", (err) => { if (err) { return console.log("Error on write: ", err.message); } console.log("message written"); }); }; return (
{ console.log("inc"); }} decrease={() => { console.log("dec"); }} toggle={() => { console.log("togg"); }} />
); }; export default App;