xxxxxxxxxx
270
let OFF = 0;
let RED = 6; // HIP HOP
let YELLOW = 5; // HISTORIC EVENTS
let GREEN = 4; // CLASSIC ROCK/ OLDIES
let TEAL = 3; // CLASSICAL
let BLUE = 2; // KHALEEJI FM
let station;
let oldData = OFF; // Start with radio off
let songs;
// ?
// redSounds.play(random);
function preload() {
radioBackground = loadImage ("radio.png");
radioFont = loadFont ("digital-7 (italic).ttf");
soundFormats("mp3");
// RED (HIP HOP)
redSong1 = loadSound ("NWA.mp3");
redSong2 = loadSound ("STILL DRE.mp3");
redSounds = [redSong1, redSong2] // etc
// YELLOW (HISTORY)
yellowSong1 = loadSound ("APOLLO 11.mp3");
let yellowSounds = [yellowSong1,] // etc
// GREEN (CLASSIC ROCK/ OLDIES)
greenSong1 = loadSound ("QUEEN.mp3")
let greenSounds = [greenSong1,] // etc
// TEAL (CLASSICAL)
tealSong1 = loadSound ("NUTCRACKER.mp3")
let tealSounds = [tealSong1,] // etc
// BLUE (KHALEEJI)
blueSong1 = loadSound ("MEHAD.mp3");
let blueSounds = [blueSong1,] // etc
// songs = [redSong1, greenSong1, tealSong1];// ADD SONGS?
}
// variable to hold an instance of the p5.webserial library:
const serial = new p5.WebSerial();
// HTML button object:
let portButton;
let inData; // measures serial monitor
let outByte = 0; // outgoing data
function setup() {
createCanvas(512, 384);
// check to see if serial is available:
if (!navigator.serial) {
alert("WebSerial is not supported in this browser. Try Chrome or MS Edge.");
}
// if serial is available, add connect/disconnect listeners:
navigator.serial.addEventListener("connect", portConnect);
navigator.serial.addEventListener("disconnect", portDisconnect);
// check for any ports that are available:
serial.getPorts();
// if there's no port chosen, choose one:
serial.on("noport", makePortButton);
// open whatever port is available:
serial.on("portavailable", openPort);
// handle serial errors:
serial.on("requesterror", portError);
// handle any incoming serial data:
serial.on("data", serialEvent);
serial.on("close", makePortButton);
}
function draw() {
// oldData holds the *previous* value of inData
// If user changes station, p5 checks that oldData has changed into inData
// then prints the change
if (inData != oldData) {
// The station changed
console.log("changed from " + oldData + " to " + inData);
// Stops all songs if inData (new station value) is not equal to oldData
// (old station value)
redSong1.stop();
redSong2.stop();
yellowSong1.stop();
greenSong1.stop();
tealSong1.stop();
blueSong1.stop();
// Change current song to new station
// Start playing the song for new station
// Change to arrays
if (inData == RED){
redSong2.play();
}
if (inData == YELLOW){
yellowSong1.play();
}
if (inData == GREEN){
greenSong1.play();
}
if (inData == TEAL){
tealSong1.play(); // CHANGE NUTCRACKER FILE AND TRIM
}
if (inData == BLUE){
blueSong1.play(); // CHANGE NUTCRACKER FILE AND TRIM
}
}
background(radioBackground);
// fill(255);
// text("sensor value: " + inData, 30, 50);
if (inData == OFF) { // OFF
noStroke();
fill (128,172,57); // text color
textFont(radioFont, 45); // (font name, font size)
text ("OFF", 225, 148);
glow(color(128,172,57), 19); // calls glow function
} else if (inData == RED) { // HIP HOP
// CHANNEL NAME TEXT
noStroke();
fill (128,172,57); // text color
textFont(radioFont, 45); // (font name, font size)
text("HIP HOP", 194, 148); // (text, x, y)
glow(color(128,172,57), 19); // calls glow function
// redSongs();
//redSong1.play();
} else if (inData == YELLOW) { // HISTORY
// CHANNEL NAME TEXT
noStroke();
fill (128,172,57); // text color
textFont(radioFont, 45); // (font name, font size)
text("HISTORY", 188, 148); // (text, x, y)
glow(color(128,172,57), 19); // calls glow function
} else if (inData == GREEN) { // CLASSIC ROCK
// CHANNEL NAME TEXT
noStroke();
fill (128,172,57); // text color
textFont(radioFont, 45); // (font name, font size)
text("CLASSIC ROCK", 142, 148); // (text, x, y)
glow(color(128,172,57), 19); // calls glow function
// greenSongs(); // replace with randomized array?
} else if (inData == TEAL) { // CLASSICAL
// CHANNEL NAME TEXT
noStroke();
fill (128,172,57); // text color
textFont(radioFont, 45); // (font name, font size)
text("CLASSICAL", 168, 148); // (text, x, y)
glow(color(128,172,57), 19); // calls glow function
// tealSongs(); // replace with randomized array?
} else if (inData == BLUE) { // KHALEEJI
// CHANNEL NAME TEXT
noStroke();
fill (128,172,57); // text color
textFont(radioFont, 45); // (font name, font size)
text("KHALEEJI", 178, 148); // (text, x, y)
glow(color(128,172,57), 19); // (color, intensity) calls glow function
}
oldData = inData;
}
function glow(glowColor, blurriness) {
drawingContext.shadowBlur = blurriness;
drawingContext.shadowColor = glowColor;
}
// reads 10 lines per second, so removes the null p5 finds in between
function serialEvent() {
rawData = serial.readLine(); // try reading the data
if (rawData !== null) {
inData = Number(rawData);
console.log(inData);
}
}
// function redSongs() {
// // redSong1.play();
// }
// function greenSongs() {
// greenSong1.play(); // replace with randomized array??
// }
// function tealSongs() {
// tealSong1.play(); // replace with randomized array??
// }
// if there's no port selected,
// make a port select button appear:
function makePortButton() {
// create and position a port chooser button:
portButton = createButton("choose port");
portButton.position(10, 10);
// give the port button a mousepressed handler:
portButton.mousePressed(choosePort);
}
// make the port selector window appear:
function choosePort() {
if (portButton) portButton.show();
serial.requestPort();
}
// open the selected port, and make the port button invisible:
function openPort() {
// wait for the serial.open promise to return,
// then call the initiateSerial function
serial.open().then(initiateSerial);
// once the port opens, let the user know:
function initiateSerial() {
console.log("port open");
}
// hide the port button once a port is chosen:
if (portButton) portButton.hide();
}
// pop up an alert if there's a port error:
function portError(err) {
alert("Serial port error: " + err);
}
// try to connect if a new serial port
// gets added (i.e. plugged in via USB):
function portConnect() {
console.log("port connected");
serial.getPorts();
}
// if a port is disconnected:
function portDisconnect() {
serial.close();
console.log("port disconnected");
}
function closePort() {
serial.close();
}