8 lines
81 B
JavaScript
8 lines
81 B
JavaScript
let port;
|
|
|
|
function setup() {
|
|
port = createSerial();
|
|
port.open(9600);
|
|
|
|
}
|