Update(boards): 更新micropython microbit和mithoncc板卡

This commit is contained in:
王立帮
2024-12-20 20:39:14 +08:00
parent 8727b62cb2
commit fe0a581e2c
24 changed files with 721 additions and 63287 deletions

View File

@@ -33,6 +33,11 @@ import {
Python
} from '@mixly/python';
import {
MicroPythonNetworkBlocks,
MicroPythonNetworkGenerators
} from '@mixly/micropython';
import {
MicropythonNRF51822MithonCCPins,
MicropythonNRF51822MithonCCActuatorBlocks,
@@ -83,6 +88,7 @@ Object.assign(
PythonSetBlocks,
PythonHtmlBlocks,
PythonUtilityBlocks,
MicroPythonNetworkBlocks,
MicropythonNRF51822MithonCCActuatorBlocks,
MicropythonNRF51822MithonCCCommunicateBlocks,
MicropythonNRF51822MithonCCDisplayBlocks,
@@ -111,6 +117,7 @@ Object.assign(
PythonSetGenerators,
PythonHtmlGenerators,
PythonUtilityGenerators,
MicroPythonNetworkGenerators,
MicropythonNRF51822MithonCCActuatorGenerators,
MicropythonNRF51822MithonCCCommunicateGenerators,
MicropythonNRF51822MithonCCDisplayGenerators,

View File

@@ -1253,7 +1253,7 @@
<block type="variables_set">
<field name="VAR">response</field>
<value name="VALUE">
<block type="requests_get2">
<block type="requests_get2">
<value name="URL">
<shadow type="text">
<field name="TEXT">http://mixio.mixly.cn</field>
@@ -1262,10 +1262,10 @@
</block>
</value>
</block>
<block type="variables_set">
<block type="variables_set">
<field name="VAR">response</field>
<value name="VALUE">
<block type="requests_post">
<block type="requests_post">
<value name="URL">
<shadow type="text">
<field name="TEXT">http://mixio.mixly.cn</field>

View File

@@ -5,7 +5,8 @@ const { merge } = require("webpack-merge");
module.exports = merge(common, {
resolve: {
alias: {
'@mixly/python': path.resolve(__dirname, '../python')
'@mixly/python': path.resolve(__dirname, '../python'),
'@mixly/micropython': path.resolve(__dirname, '../micropython')
}
}
});