feat: read serial port and play video

This commit is contained in:
bmeow 2024-08-03 18:24:32 +08:00
commit ad839bbdd4
Signed by: bmeow
GPG key ID: EA6961FF8459B45C
9 changed files with 243 additions and 0 deletions

9
tags.example.js Normal file
View file

@ -0,0 +1,9 @@
/**
* A map from tag id (HEX string) to url of the corresponding video
* @type {{[tagId: string]: string}}
*/
var tags = {
'3E033E03': 'video/CAT1.mp4',
'ABCD1234': 'video/CAT2.mp4',
'BEEFCAFE': 'video/CAT3.mp4',
};