I’m a middle school design teacher and I’m trying to do a project with my students to design some simple remote control vehicles. I have the Keyestudio Motor Hat for microbit and I was wondering if someone could help me figure out how to make some custom blocks for it.
a block that is an on/off slider to initiate the motors
a block that alternates the pins high/low to create forward and reverse
a block that has a slider to vary each motor’s speed.
Anyone have any suggestions how? I’m looking at documentation to create custom blocks and am trying to copy some other extensions with similar looking blocks but I’m admittedly a bit of a newb.
I’ve created an example of new blocks. I’m not sure if it does what you want or need, but it might help you with the next step. I don’t have a Motor hat to do any testing, so this was partly some guess work based on your example. Also, your original example used P1 for speed for both motors. I guessed you may have meant P1 and P2. If not, my example will need some minor modification.
If it’s not quite what you want, you can modify the new blocks:
Click on the JavaScript slider at the top.
Below the simulated micro:bit is the word “Explorer” on a button with a down arrow. Click on the arrow, which will reveal all the files in the project.
The code and definitions for the new blocks are in the custom.ts file. You can update the code as needed (and the icon, toolbox color, etc.)
If you want to use different styles of blocks, you may want to explore the block creation Playground at https://makecode.com/playground . You can select the micro:bit and editor the select several examples to browse and modify. I think most examples show their blocks in the toolbox with the puzzlepiece icon.
Once you’re happy with the blocks you can either use the Share Project link to allow your kids to each open their own version (open the link and then edit it). Or you can share the blocks via GitHub.
I forgot to mention: The previous projects I shared look empty, but they contain a new toolbox for the new parts. Here’s an example that uses the blocks: https://makecode.microbit.org/_7gH5F6bRV4zA
Ok, everything seems to be working almost perfect. There’s an issue with the “set motor block” where it shows too many variables.
Selecting one of them works and the other throws an error on the microbit. I think I can investigate and figure out what is going on now that you did the bulk of the work. You’re a genius!! I’ll keep updating and try and get some video of the kids’ creations when we finish them.