This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This is necessary because Typescript refuses to import the file unless it has | |
// an export apparently. 🥲 | |
export {}; | |
declare global { | |
/** | |
* The possible types of barcode format that can be detected using the | |
* Barcode Detection API. This list may change in the future. | |
* Adapted from: https://developer.mozilla.org/en-US/docs/Web/API/Barcode_Detection_API | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"play-next": "Play Next", | |
"play-album": "Play Album", | |
"queue": "Queue", | |
"add-to-queue": "Add to Queue", | |
"clear-queue": "Clear Queue", | |
"no-results": "No results...", | |
"album": "Album", | |
"albums": "Albums", | |
"all-albums": "All Albums", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//(c) Loe Feijs and TU/e 2019-2020 Digital Craftmanship | |
//Translate your name in a series of zeros and ones | |
//The code is like ASCII but now 'A' begins at 1 | |
//Using the function, we can make a punched-tape | |
//We use five bits and exceptionally take ' 'to be 00000 | |
//Lower case is converted to upper case | |
import processing.pdf.*; | |
void setup() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <Arduino.h> | |
#include "Adafruit_SGP30.h" | |
#include "OOCSI.h" | |
#define REED_PIN 2 | |
// use this if you want the OOCSI-ESP library to manage the connection to the Wifi | |
// SSID of your Wifi network, the library currently does not support WPA2 Enterprise networks | |
const char* ssid = "***"; | |
// Password of your Wifi network. |