xxxxxxxxxx
29
<html lang="en">
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.4.0/p5.js"></script>
<script language="javascript" type="text/javascript" src="https://cdn.jsdelivr.net/npm/p5.serialserver@0.0.28/lib/p5.serialport.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.10.0/p5.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.10.0/addons/p5.sound.min.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<meta charset="utf-8" />
</head>
<body>
var portname = 'usbmodem14501'
function setup() {
createCanvas(400, 400);
// Set up the serial connection
serial = new p5.SerialPort()
serial.open('/dev/tty.usbmodem14501'); // Update this to match your Arduino's port
serial.on('data', gotData);
}
<main>
</main>
<script src="sketch.js"></script>
</body>
</html>