mirror of
https://github.com/s00500/SimpleExpressions
synced 2024-11-21 12:50:54 +00:00
modified: simpleExpression_blocks.js
This commit is contained in:
parent
3405cf52c9
commit
1ed2a6928d
@ -1,6 +1,21 @@
|
|||||||
Facilino.LANG_COLOUR_SCREEN = '#ACCE42';
|
Facilino.LANG_COLOUR_SCREEN = '#ACCE42';
|
||||||
Facilino.LANG_COLOUR_SCREEN_LEDSTRIP = '#8EAC32';
|
Facilino.LANG_COLOUR_SCREEN_LEDSTRIP = '#8EAC32';
|
||||||
|
|
||||||
|
Facilino.hexToRgb = function(hex) {
|
||||||
|
// Expand shorthand form (e.g. "03F") to full form (e.g. "0033FF")
|
||||||
|
var shorthandRegex = /^#?([a-f\d])([a-f\d])([a-f\d])$/i;
|
||||||
|
hex = hex.replace(shorthandRegex, function(m, r, g, b) {
|
||||||
|
return r + r + g + g + b + b;
|
||||||
|
});
|
||||||
|
|
||||||
|
var result = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(hex);
|
||||||
|
return result ? {
|
||||||
|
r: parseInt(result[1], 16),
|
||||||
|
g: parseInt(result[2], 16),
|
||||||
|
b: parseInt(result[3], 16)
|
||||||
|
} : null;
|
||||||
|
};
|
||||||
|
|
||||||
Blockly.Blocks['show_mouth'] = {
|
Blockly.Blocks['show_mouth'] = {
|
||||||
category: Facilino.locales.getKey('LANG_CATEGORY_SCREEN'),
|
category: Facilino.locales.getKey('LANG_CATEGORY_SCREEN'),
|
||||||
subcategory: Facilino.locales.getKey('LANG_SUBCATERGORY_WS2812'),
|
subcategory: Facilino.locales.getKey('LANG_SUBCATERGORY_WS2812'),
|
||||||
|
Loading…
Reference in New Issue
Block a user