Skip to content

Commit

Permalink
New Matrix 8x8 MAX7219
Browse files Browse the repository at this point in the history
New Matrix 8x8 MAX7219
  • Loading branch information
logix5 committed Jun 12, 2021
1 parent 2c08343 commit 33c129a
Show file tree
Hide file tree
Showing 17 changed files with 737 additions and 23 deletions.
434 changes: 434 additions & 0 deletions www/blocs&generateurs/MAX7219.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions www/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
<script type="text/javascript" src="blocs&generateurs/OpenSmartMP3.js"></script>
<script type="text/javascript" src="blocs&generateurs/ST7735.js"></script>
<script type="text/javascript" src="blocs&generateurs/MatrizLed.js"></script>
<script type="text/javascript" src="blocs&generateurs/MAX7219.js"></script>
<script type="text/javascript" src="blocs&generateurs/TCS34725.js"></script>
<script type="text/javascript" src="blocs&generateurs/HMC5883.js"></script>
<script type="text/javascript" src="blocs&generateurs/RFID.js"></script>
Expand Down
1 change: 1 addition & 0 deletions www/index_electron.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
<script type="text/javascript" src="blocs&generateurs/OpenSmartMP3.js"></script>
<script type="text/javascript" src="blocs&generateurs/ST7735.js"></script>
<script type="text/javascript" src="blocs&generateurs/MatrizLed.js"></script>
<script type="text/javascript" src="blocs&generateurs/MAX7219.js"></script>
<script type="text/javascript" src="blocs&generateurs/TCS34725.js"></script>
<script type="text/javascript" src="blocs&generateurs/HMC5883.js"></script>
<script type="text/javascript" src="blocs&generateurs/RFID.js"></script>
Expand Down
16 changes: 16 additions & 0 deletions www/lang/Arduino_cn.js
Original file line number Diff line number Diff line change
Expand Up @@ -1069,3 +1069,19 @@ Blockly.Msg.NTP_DOFWEEK="Day of week";
Blockly.Msg.NTP_TEXT_DOFWEEK="Day of week in string";
Blockly.Msg.NTP_TEXT_MONTH="Month in string ";
Blockly.Msg.NTP_TEXT_TIME="Time in string ";

//MAX7219-Led Matrix panel
Blockly.Msg.MAX7219_LM_NAME="Init MAX7219 Led Matrix.";
Blockly.Msg.MAX7219_LM_CS="CS Pin";
Blockly.Msg.MAX7219_LM_CLK="CLK Pin";
Blockly.Msg.MAX7219_LM_DAT="DAT Pin";
Blockly.Msg.MAX7219_LM_Number="Number of matrix";
Blockly.Msg.MAX7219_LM_NAME2="MAX7219 Led matrix#";
Blockly.Msg.MAX7219_LM_Brightness="brightness (0-15)";
Blockly.Msg.MAX7219_LM_SHUTDOWN="Activate";
Blockly.Msg.MAX7219_LM_CLEAR="Clear";
Blockly.Msg.MAX7219_LM_PAINT="Draw this image";
Blockly.Msg.MAX7219_LM_Row="Row(0-7)";
Blockly.Msg.MAX7219_LM_value="Value (bin or hex or dec)";
Blockly.Msg.MAX7219_LM_Column="Column(0-7)";
Blockly.Msg.MAX7219_LM_Led="Set Led";
16 changes: 16 additions & 0 deletions www/lang/Arduino_cz.js
Original file line number Diff line number Diff line change
Expand Up @@ -1064,3 +1064,19 @@ Blockly.Msg.NTP_DOFWEEK="Day of week";
Blockly.Msg.NTP_TEXT_DOFWEEK="Day of week in string";
Blockly.Msg.NTP_TEXT_MONTH="Month in string ";
Blockly.Msg.NTP_TEXT_TIME="Time in string ";

//MAX7219-Led Matrix panel
Blockly.Msg.MAX7219_LM_NAME="Init MAX7219 Led Matrix.";
Blockly.Msg.MAX7219_LM_CS="CS Pin";
Blockly.Msg.MAX7219_LM_CLK="CLK Pin";
Blockly.Msg.MAX7219_LM_DAT="DAT Pin";
Blockly.Msg.MAX7219_LM_Number="Number of matrix";
Blockly.Msg.MAX7219_LM_NAME2="MAX7219 Led matrix#";
Blockly.Msg.MAX7219_LM_Brightness="brightness (0-15)";
Blockly.Msg.MAX7219_LM_SHUTDOWN="Activate";
Blockly.Msg.MAX7219_LM_CLEAR="Clear";
Blockly.Msg.MAX7219_LM_PAINT="Draw this image";
Blockly.Msg.MAX7219_LM_Row="Row(0-7)";
Blockly.Msg.MAX7219_LM_value="Value (bin or hex or dec)";
Blockly.Msg.MAX7219_LM_Column="Column(0-7)";
Blockly.Msg.MAX7219_LM_Led="Set Led";
16 changes: 16 additions & 0 deletions www/lang/Arduino_de.js
Original file line number Diff line number Diff line change
Expand Up @@ -1067,3 +1067,19 @@ Blockly.Msg.NTP_DOFWEEK="Day of week";
Blockly.Msg.NTP_TEXT_DOFWEEK="Day of week in string";
Blockly.Msg.NTP_TEXT_MONTH="Month in string ";
Blockly.Msg.NTP_TEXT_TIME="Time in string ";

//MAX7219-Led Matrix panel
Blockly.Msg.MAX7219_LM_NAME="Init MAX7219 Led Matrix.";
Blockly.Msg.MAX7219_LM_CS="CS Pin";
Blockly.Msg.MAX7219_LM_CLK="CLK Pin";
Blockly.Msg.MAX7219_LM_DAT="DAT Pin";
Blockly.Msg.MAX7219_LM_Number="Number of matrix";
Blockly.Msg.MAX7219_LM_NAME2="MAX7219 Led matrix#";
Blockly.Msg.MAX7219_LM_Brightness="brightness (0-15)";
Blockly.Msg.MAX7219_LM_SHUTDOWN="Activate";
Blockly.Msg.MAX7219_LM_CLEAR="Clear";
Blockly.Msg.MAX7219_LM_PAINT="Draw this image";
Blockly.Msg.MAX7219_LM_Row="Row(0-7)";
Blockly.Msg.MAX7219_LM_value="Value (bin or hex or dec)";
Blockly.Msg.MAX7219_LM_Column="Column(0-7)";
Blockly.Msg.MAX7219_LM_Led="Set Led";
16 changes: 15 additions & 1 deletion www/lang/Arduino_en.js
Original file line number Diff line number Diff line change
Expand Up @@ -1045,5 +1045,19 @@ Blockly.Msg.NTP_TEXT_DOFWEEK="Day of week in string";
Blockly.Msg.NTP_TEXT_MONTH="Month in string ";
Blockly.Msg.NTP_TEXT_TIME="Time in string ";


//MAX7219-Led Matrix panel
Blockly.Msg.MAX7219_LM_NAME="Init MAX7219 Led Matrix.";
Blockly.Msg.MAX7219_LM_CS="CS Pin";
Blockly.Msg.MAX7219_LM_CLK="CLK Pin";
Blockly.Msg.MAX7219_LM_DAT="DAT Pin";
Blockly.Msg.MAX7219_LM_Number="Number of matrix";
Blockly.Msg.MAX7219_LM_NAME2="MAX7219 Led matrix#";
Blockly.Msg.MAX7219_LM_Brightness="brightness (0-15)";
Blockly.Msg.MAX7219_LM_SHUTDOWN="Activate";
Blockly.Msg.MAX7219_LM_CLEAR="Clear";
Blockly.Msg.MAX7219_LM_PAINT="Draw this image";
Blockly.Msg.MAX7219_LM_Row="Row(0-7)";
Blockly.Msg.MAX7219_LM_value="Value (bin or hex or dec)";
Blockly.Msg.MAX7219_LM_Column="Column(0-7)";
Blockly.Msg.MAX7219_LM_Led="Set Led";

16 changes: 16 additions & 0 deletions www/lang/Arduino_es.js
Original file line number Diff line number Diff line change
Expand Up @@ -1069,3 +1069,19 @@ Blockly.Msg.NTP_TEXT_DOFWEEK="Día de la semana en string";
Blockly.Msg.NTP_TEXT_MONTH="Mes en string ";
Blockly.Msg.NTP_TEXT_TIME="Hora in string ";

//MAX7219-Led Matrix panel
Blockly.Msg.MAX7219_LM_NAME="Ini MAX7219 Matriz Led.";
Blockly.Msg.MAX7219_LM_CS="CS Pin";
Blockly.Msg.MAX7219_LM_CLK="CLK Pin";
Blockly.Msg.MAX7219_LM_DAT="DAT Pin";
Blockly.Msg.MAX7219_LM_Number="Número de matriz";
Blockly.Msg.MAX7219_LM_NAME2="MAX7219 Led matriz";
Blockly.Msg.MAX7219_LM_Brightness="Brillo (0-15)";
Blockly.Msg.MAX7219_LM_SHUTDOWN="Activar";
Blockly.Msg.MAX7219_LM_CLEAR="Borrar";
Blockly.Msg.MAX7219_LM_PAINT="Dibujar imagen";
Blockly.Msg.MAX7219_LM_Row="Fila(0-7)";
Blockly.Msg.MAX7219_LM_value="Valor (bin o hex o dec)";
Blockly.Msg.MAX7219_LM_Column="Columna(0-7)";
Blockly.Msg.MAX7219_LM_Led="Poner Led";

16 changes: 16 additions & 0 deletions www/lang/Arduino_fr.js
Original file line number Diff line number Diff line change
Expand Up @@ -1069,3 +1069,19 @@ Blockly.Msg.NTP_TEXT_DOFWEEK="Day of week in string";
Blockly.Msg.NTP_TEXT_MONTH="Month in string ";
Blockly.Msg.NTP_TEXT_TIME="Time in string ";

//MAX7219-Led Matrix panel
Blockly.Msg.MAX7219_LM_NAME="Init MAX7219 Led Matrix.";
Blockly.Msg.MAX7219_LM_CS="CS Pin";
Blockly.Msg.MAX7219_LM_CLK="CLK Pin";
Blockly.Msg.MAX7219_LM_DAT="DAT Pin";
Blockly.Msg.MAX7219_LM_Number="Number of matrix";
Blockly.Msg.MAX7219_LM_NAME2="MAX7219 Led matrix#";
Blockly.Msg.MAX7219_LM_Brightness="brightness (0-15)";
Blockly.Msg.MAX7219_LM_SHUTDOWN="Activate";
Blockly.Msg.MAX7219_LM_CLEAR="Clear";
Blockly.Msg.MAX7219_LM_PAINT="Draw this image";
Blockly.Msg.MAX7219_LM_Row="Row(0-7)";
Blockly.Msg.MAX7219_LM_value="Value (bin or hex or dec)";
Blockly.Msg.MAX7219_LM_Column="Column(0-7)";
Blockly.Msg.MAX7219_LM_Led="Set Led";

16 changes: 16 additions & 0 deletions www/lang/Arduino_heb.js
Original file line number Diff line number Diff line change
Expand Up @@ -1066,3 +1066,19 @@ Blockly.Msg.NTP_TEXT_DOFWEEK="Day of week in string";
Blockly.Msg.NTP_TEXT_MONTH="Month in string ";
Blockly.Msg.NTP_TEXT_TIME="Time in string ";

//MAX7219-Led Matrix panel
Blockly.Msg.MAX7219_LM_NAME="Init MAX7219 Led Matrix.";
Blockly.Msg.MAX7219_LM_CS="CS Pin";
Blockly.Msg.MAX7219_LM_CLK="CLK Pin";
Blockly.Msg.MAX7219_LM_DAT="DAT Pin";
Blockly.Msg.MAX7219_LM_Number="Number of matrix";
Blockly.Msg.MAX7219_LM_NAME2="MAX7219 Led matrix#";
Blockly.Msg.MAX7219_LM_Brightness="brightness (0-15)";
Blockly.Msg.MAX7219_LM_SHUTDOWN="Activate";
Blockly.Msg.MAX7219_LM_CLEAR="Clear";
Blockly.Msg.MAX7219_LM_PAINT="Draw this image";
Blockly.Msg.MAX7219_LM_Row="Row(0-7)";
Blockly.Msg.MAX7219_LM_value="Value (bin or hex or dec)";
Blockly.Msg.MAX7219_LM_Column="Column(0-7)";
Blockly.Msg.MAX7219_LM_Led="Set Led";

16 changes: 16 additions & 0 deletions www/lang/Arduino_hu.js
Original file line number Diff line number Diff line change
Expand Up @@ -1033,4 +1033,20 @@ Blockly.Msg.NTP_TEXT_DOFWEEK="Day of week in string";
Blockly.Msg.NTP_TEXT_MONTH="Month in string ";
Blockly.Msg.NTP_TEXT_TIME="Time in string ";

//MAX7219-Led Matrix panel
Blockly.Msg.MAX7219_LM_NAME="Init MAX7219 Led Matrix.";
Blockly.Msg.MAX7219_LM_CS="CS Pin";
Blockly.Msg.MAX7219_LM_CLK="CLK Pin";
Blockly.Msg.MAX7219_LM_DAT="DAT Pin";
Blockly.Msg.MAX7219_LM_Number="Number of matrix";
Blockly.Msg.MAX7219_LM_NAME2="MAX7219 Led matrix#";
Blockly.Msg.MAX7219_LM_Brightness="brightness (0-15)";
Blockly.Msg.MAX7219_LM_SHUTDOWN="Activate";
Blockly.Msg.MAX7219_LM_CLEAR="Clear";
Blockly.Msg.MAX7219_LM_PAINT="Draw this image";
Blockly.Msg.MAX7219_LM_Row="Row(0-7)";
Blockly.Msg.MAX7219_LM_value="Value (bin or hex or dec)";
Blockly.Msg.MAX7219_LM_Column="Column(0-7)";
Blockly.Msg.MAX7219_LM_Led="Set Led";


16 changes: 16 additions & 0 deletions www/lang/Arduino_pl.js
Original file line number Diff line number Diff line change
Expand Up @@ -1066,3 +1066,19 @@ Blockly.Msg.NTP_TEXT_DOFWEEK="Day of week in string";
Blockly.Msg.NTP_TEXT_MONTH="Month in string ";
Blockly.Msg.NTP_TEXT_TIME="Time in string ";

//MAX7219-Led Matrix panel
Blockly.Msg.MAX7219_LM_NAME="Init MAX7219 Led Matrix.";
Blockly.Msg.MAX7219_LM_CS="CS Pin";
Blockly.Msg.MAX7219_LM_CLK="CLK Pin";
Blockly.Msg.MAX7219_LM_DAT="DAT Pin";
Blockly.Msg.MAX7219_LM_Number="Number of matrix";
Blockly.Msg.MAX7219_LM_NAME2="MAX7219 Led matrix#";
Blockly.Msg.MAX7219_LM_Brightness="brightness (0-15)";
Blockly.Msg.MAX7219_LM_SHUTDOWN="Activate";
Blockly.Msg.MAX7219_LM_CLEAR="Clear";
Blockly.Msg.MAX7219_LM_PAINT="Draw this image";
Blockly.Msg.MAX7219_LM_Row="Row(0-7)";
Blockly.Msg.MAX7219_LM_value="Value (bin or hex or dec)";
Blockly.Msg.MAX7219_LM_Column="Column(0-7)";
Blockly.Msg.MAX7219_LM_Led="Set Led";

16 changes: 16 additions & 0 deletions www/lang/Arduino_pt.js
Original file line number Diff line number Diff line change
Expand Up @@ -1067,3 +1067,19 @@ Blockly.Msg.NTP_TEXT_DOFWEEK="Day of week in string";
Blockly.Msg.NTP_TEXT_MONTH="Month in string ";
Blockly.Msg.NTP_TEXT_TIME="Time in string ";

//MAX7219-Led Matrix panel
Blockly.Msg.MAX7219_LM_NAME="Init MAX7219 Led Matrix.";
Blockly.Msg.MAX7219_LM_CS="CS Pin";
Blockly.Msg.MAX7219_LM_CLK="CLK Pin";
Blockly.Msg.MAX7219_LM_DAT="DAT Pin";
Blockly.Msg.MAX7219_LM_Number="Number of matrix";
Blockly.Msg.MAX7219_LM_NAME2="MAX7219 Led matrix#";
Blockly.Msg.MAX7219_LM_Brightness="brightness (0-15)";
Blockly.Msg.MAX7219_LM_SHUTDOWN="Activate";
Blockly.Msg.MAX7219_LM_CLEAR="Clear";
Blockly.Msg.MAX7219_LM_PAINT="Draw this image";
Blockly.Msg.MAX7219_LM_Row="Row(0-7)";
Blockly.Msg.MAX7219_LM_value="Value (bin or hex or dec)";
Blockly.Msg.MAX7219_LM_Column="Column(0-7)";
Blockly.Msg.MAX7219_LM_Led="Set Led";

16 changes: 16 additions & 0 deletions www/lang/Arduino_ru.js
Original file line number Diff line number Diff line change
Expand Up @@ -1066,3 +1066,19 @@ Blockly.Msg.NTP_TEXT_DOFWEEK="Day of week in string";
Blockly.Msg.NTP_TEXT_MONTH="Month in string ";
Blockly.Msg.NTP_TEXT_TIME="Time in string ";

//MAX7219-Led Matrix panel
Blockly.Msg.MAX7219_LM_NAME="Init MAX7219 Led Matrix.";
Blockly.Msg.MAX7219_LM_CS="CS Pin";
Blockly.Msg.MAX7219_LM_CLK="CLK Pin";
Blockly.Msg.MAX7219_LM_DAT="DAT Pin";
Blockly.Msg.MAX7219_LM_Number="Number of matrix";
Blockly.Msg.MAX7219_LM_NAME2="MAX7219 Led matrix#";
Blockly.Msg.MAX7219_LM_Brightness="brightness (0-15)";
Blockly.Msg.MAX7219_LM_SHUTDOWN="Activate";
Blockly.Msg.MAX7219_LM_CLEAR="Clear";
Blockly.Msg.MAX7219_LM_PAINT="Draw this image";
Blockly.Msg.MAX7219_LM_Row="Row(0-7)";
Blockly.Msg.MAX7219_LM_value="Value (bin or hex or dec)";
Blockly.Msg.MAX7219_LM_Column="Column(0-7)";
Blockly.Msg.MAX7219_LM_Led="Set Led";

16 changes: 16 additions & 0 deletions www/lang/Arduino_tr.js
Original file line number Diff line number Diff line change
Expand Up @@ -1070,3 +1070,19 @@ Blockly.Msg.NTP_TEXT_DOFWEEK="Day of week in string";
Blockly.Msg.NTP_TEXT_MONTH="Month in string ";
Blockly.Msg.NTP_TEXT_TIME="Time in string ";

//MAX7219-Led Matrix panel
Blockly.Msg.MAX7219_LM_NAME="Init MAX7219 Led Matrix.";
Blockly.Msg.MAX7219_LM_CS="CS Pin";
Blockly.Msg.MAX7219_LM_CLK="CLK Pin";
Blockly.Msg.MAX7219_LM_DAT="DAT Pin";
Blockly.Msg.MAX7219_LM_Number="Number of matrix";
Blockly.Msg.MAX7219_LM_NAME2="MAX7219 Led matrix#";
Blockly.Msg.MAX7219_LM_Brightness="brightness (0-15)";
Blockly.Msg.MAX7219_LM_SHUTDOWN="Activate";
Blockly.Msg.MAX7219_LM_CLEAR="Clear";
Blockly.Msg.MAX7219_LM_PAINT="Draw this image";
Blockly.Msg.MAX7219_LM_Row="Row(0-7)";
Blockly.Msg.MAX7219_LM_value="Value (bin or hex or dec)";
Blockly.Msg.MAX7219_LM_Column="Column(0-7)";
Blockly.Msg.MAX7219_LM_Led="Set Led";

86 changes: 69 additions & 17 deletions www/toolbox/toolbox_arduino_all-esp8266.xml
Original file line number Diff line number Diff line change
Expand Up @@ -458,34 +458,42 @@
</block>

<category name="CAT_LEDRGB" colour="#4b009f">
<block type="rvb_init_2"></block>
<block type="rvb_set">
<block type="rgb_init"></block>
<block type="rgb_setcolor"></block>
<block type="rgb_set">
<value name="r"><shadow type="math_number"><field name="NUM">255</field></shadow></value>
<value name="v"><shadow type="math_number"><field name="NUM">255</field></shadow></value>
<value name="b"><shadow type="math_number"><field name="NUM">255</field></shadow></value>
</block>
</category>

<category name="CAT_NEOPIXEL" colour="#4b009f">
<block type="pixel_init_2">
<value name="pin"><shadow type="math_number"><field name="NUM">10</field></shadow></value>
<value name="num"><shadow type="math_number"><field name="NUM">8</field></shadow></value>
<block type="pixel_init">
<value name="pin"><shadow type="analog_pin"><field name="NUM">10</field></shadow></value>
<value name="num"><shadow type="analog_pin"><field name="NUM">8</field></shadow></value>
</block>
<block type="pixel_show"></block>
<block type="pixel_clear"></block>
<block type="pixel_setbrightness">
<value name="brightness"><shadow type="analog_pin"><field name="NUM">99</field></shadow></value>
</block>
<block type="pixel_setcolor">
<value name="pin"><shadow type="math_number"><field name="NUM">0</field></shadow></value>
<value name="pin"><shadow type="analog_pin"><field name="NUM">0</field></shadow></value>
</block>
<block type="pixel_rgb">
<value name="pin"><shadow type="math_number"><field name="NUM">10</field></shadow></value>
<value name="pin"><shadow type="analog_pin"><field name="NUM">10</field></shadow></value>
<value name="R"><shadow type="math_number"><field name="NUM">255</field></shadow></value>
<value name="G"><shadow type="math_number"><field name="NUM">255</field></shadow></value>
<value name="B"><shadow type="math_number"><field name="NUM">255</field></shadow></value>
</block>
<block type="pixel_setbrightness">
<value name="brightness"><shadow type="math_number"><field name="NUM">99</field></shadow></value>
</block>
<block type="pixel_clear"></block>
<block type="pixel_fill"></block>
<block type="pixel_fill2">
<value name="R"><shadow type="math_number"><field name="NUM">255</field></shadow></value>
<value name="G"><shadow type="math_number"><field name="NUM">255</field></shadow></value>
<value name="B"><shadow type="math_number"><field name="NUM">255</field></shadow></value>
</block>
<block type="MatrixLED_WS2812B_init_2">
<value name="Pin_Matrix_init"><shadow type="math_number"><field name="NUM">13</field></shadow></value>
<value name="Pin_Matrix_init"><shadow type="analog_pin"><field name="NUM">13</field></shadow></value>
<value name="Number_of_Pixels"><shadow type="math_number"><field name="NUM">1</field></shadow> </value>
</block>
<block type="MatrixLED_WS2812B_draw"></block>
Expand Down Expand Up @@ -547,14 +555,48 @@
</category>

<category name="CAT_MAX7219" colour="#4b009f">
<block type="Init_MAX7219_ledmatrix">
<value name="PIN_CLK"><shadow type="math_number"><field name="NUM">15</field></shadow></value>
<value name="PIN_CS"><shadow type="math_number"><field name="NUM">16</field></shadow></value>
<value name="PIN_DAT"><shadow type="math_number"><field name="NUM">17</field></shadow></value>
</block>

<block type="MAX7219_ledmatrix_brightness">
<value name="BRIGHTNESS"><shadow type="math_number"><field name="NUM">15</field></shadow></value>
</block>

<block type="MAX7219_ledmatrix_shutdown"></block>
<block type="MAX7219_ledmatrix_clear"></block>

<block type="MAX7219_ledmatrix_row">
<value name="Row"><shadow type="math_number"><field name="NUM">1</field></shadow></value>
<value name="VALUE"><shadow type="math_number"><field name="NUM">1</field></shadow></value>
</block>

<block type="MAX7219_ledmatrix_column">
<value name="Column"><shadow type="math_number"><field name="NUM">1</field></shadow></value>
<value name="VALUE"><shadow type="math_number"><field name="NUM">1</field></shadow></value>
</block>

<block type="MAX7219_ledmatrix_led">
<value name="Row"><shadow type="math_number"><field name="NUM">1</field></shadow></value>
<value name="Column"><shadow type="math_number"><field name="NUM">1</field></shadow></value>
</block>

<block type="MAX7219_ledmatrix_draw"></block>
<block type="MAX7219_animation"></block>


<!--
<block type="matrice8x8_init_2">
<value name="CLK"><shadow type="math_number"><field name="NUM">15</field></shadow></value>
<value name="CS"><shadow type="math_number"><field name="NUM">16</field></shadow></value>
<value name="CLK"><shadow type="analog_pin"><field name="NUM">15</field></shadow></value>
<value name="CS"><shadow type="analog_pin"><field name="NUM">16</field></shadow></value>
<value name="DIN"><shadow type="math_number"><field name="NUM">17</field></shadow></value>
</block>
<block type="matrice8x8_brightness">
<value name="brightness"><shadow type="math_number"><field name="NUM">15</field></shadow></value>
</block>
</block>
<block type="matrice8x8_del">
<value name="X"><shadow type="math_number"><field name="NUM">1</field></shadow></value>
<value name="Y"><shadow type="math_number"><field name="NUM">1</field></shadow></value>
Expand All @@ -566,11 +608,21 @@
<value name="row"><shadow type="math_number"><field name="NUM">1</field></shadow></value>
</block>
<block type="matrice8x8_symbole"></block>
<block type="matrice8x8_aff"></block>
<block type="matrice8x8_animation"></block>
<block type="matrice8x8_aff"></block>
<block type="matrice8x8_efface"></block>
<block type="matrice8x8_animation"></block>
-->
</category>




</category>





<category name="CAT_Displays" colour="#4b009f">
<category name="CAT_OLED_U8G" colour="#4b009f">
Expand Down
Loading

0 comments on commit 33c129a

Please sign in to comment.