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 a collection of RTTTLs that can be used with any RTTTL player. Foremost it is for the Ulanzi TC001 LED Matrix. | |
//Onlineplayer: https://adamonsoon.github.io/rtttl-play/ | |
Original1:d=4,o=5,b=140:16e,16g,16a,16c | |
//ESPHOME - https://esphome.io/components/rtttl.html | |
two_short:d=4,o=5,b=100:16e6,16e6 | |
long:d=1,o=5,b=100:e6 | |
siren:d=8,o=5,b=100:d,e,d,e,d,e,d,e |
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
#define CONFIGURATION_H | |
#define CONFIGURATION_H_VERSION 020000 | |
#define STRING_CONFIG_H_AUTHOR (printedsolid.com, CR-10S) | |
#define SHOW_BOOTSCREEN | |
#define STRING_SPLASH_LINE1 SHORT_BUILD_VERSION | |
#define STRING_SPLASH_LINE2 WEBSITE_URL | |
#undef SHOW_CUSTOM_BOOTSCREEN | |
#define CUSTOM_STATUS_SCREEN_IMAGE | |
#define SERIAL_PORT 0 | |
#undef SERIAL_PORT_2 -1 |
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
04171f1b0d8f2a6c6539fda09a78530206801107dd15c3de76333889d26a6abe57a90ab8b492cdd89391309a6719fc0fad5a0f81c488ab9dcce2706bf9a0f61886;msoftware |
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
import urllib.request | |
import urllib.error | |
import re | |
import json | |
p = re.compile('\.mdi-(.*?):before') | |
with urllib.request.urlopen('http://cdn.materialdesignicons.com/1.5.54/css/materialdesignicons.min.css') as response: | |
html = response.read() |
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
// http://portablecontacts.net/draft-spec.html#structure | |
var contact = { | |
userID: '', | |
displayName: '', | |
name: { | |
formatted: '', | |
familyName: '', | |
givenName: '', | |
middleName: '', | |
honorificPrefix: '', |