外链论坛

 找回密码
 立即注册
搜索
查看: 20|回复: 4

《micro:bit软件指南》一书即将发行

[复制链接]

3071

主题

3万

回帖

9915万

积分

论坛元老

Rank: 8Rank: 8

积分
99158927
发表于 2024-10-10 08:18:34 | 显示全部楼层 |阅读模式

《micro:bit软件指南》一书,重点介绍了micro:bit软件方面。经过丰富的案例和程序,讲解了MakeCode高级编程功能、蓝牙的运用、MakeCode扩展的研发、编程技巧等内容,能够帮忙读者深入学习和把握micro:bit,研发MakeCode扩展,乃至用于STEM学习和创客活动。Micro:bit基金会还专门为本书写了前言,强调了编程和计算思维是21世纪的基本技能(Coding and computational thinking are foundation skills for the 21st century)。

本书重点深入介绍了

MakeCode高级编程功能的用法

函数

数组

游戏功能

后台运行(多任务)

事件

micro:bit的蓝牙运用、编程办法

MakeCode扩展(软件包)的研发办法

内 容 简 介

本书由浅入深地介绍了micro:bit的常用研发软件用法,深入讲解MakeCode高级编程功能、移动终端(手机、平板电脑)APP的应用、MakeCode扩展模块的研发办法,以及编程中的实质应用技巧。MakeCode高级编程模块的应用与实践部分触及了软件学习和应用关联的硬件知识,使读者对micro:bit的运用有一个更全面的认识和认识,以便更好地把握micro:bit。

本书案例丰富,注重实践指点,是进一步学习和应用micro:bit的好助手。书中的案例和关联APP所有整理在网络云端,读者能够在前言中找到相应下载位置

本书为青少年创客活动和设备人学习供给全面的参考和实践指点。读者包含对micro:bit感兴趣的青少年兴趣者,从事STEM教育的工作者,以及数学、艺术行业的跨专业兴趣者。

Micro:bit基金会为本书写的前言

Coding and computational thinking are foundation skills for the 21st century. Skills that the Micro:bit Education Foundation believes every child should have access to.

The BBC micro:bit began life in the UK back in 2012 and after years of research and product development eventually culminated with 1m BBC micro:bits being distributed to all year 7 children in the UK in 2016. The micro:bit was designed to allow children to get hands on with technology, to unleash their creativity and widen participation.

The BBC micro:bit is a small programmable device.  It is easy to program, very versatile, and designed with young learners in mind.  In particular its designed to be accessible for people who have never programmed before.

The UK project had huge success with 89% of children who used the micro:bit saying that it showed them that anyone can code and providing a 70% increase in girls saying they would take computing as an option.

The micro:bit has now spread around the world and is available in over 50 countries with national scale projects in Singapore, Denmark, Croatia, Canada to name but a few.

The success of BBC micro:bit is not just down to the innovative hardware device though.  It’s the micro:bit ecosystem that makes micro:bit such a great tool for educators, children and anyone interested in using tech in inventive and fun ways!  Our ecosystem consists of the hardware, peripherals and add ons as well as our great editors.  There are also loads of amazing projects, lessons and fun ideas that are freely available online as well as vibrant communities of enthusiasts.

But the most important component of our ecosystem are the people that use it.

So, thank you for picking up this book.  We at the Micro:bit Educational Foundation wish you good luck on your micro:bit journey!

Sincerely

The Micro:bit Educational Foundation

目 录

第1章 micro:bit常用研发软件  / 1

1.1 MakeCode  / 1

1.1.1 MakeCode for micro:bit(Win10)  / 3

1.1.2 MakeCode离线版  / 3

1.2 PythonEditor  / 4

1.2.1 MU  / 5

1.2.2 PythonEditor中文社区版  / 6

1.2.3 mpython  / 7

1.3 Open Roberta  / 8

1.4 其他软件  / 10

1.4.1 Arduino IDE  / 10

1.4.2 Espruino  / 12

1.4.3 EduBlocks  / 13

1.4.4 Scratch  / 15

1.4.5 Mbed OS  / 15

第2章 MakeCode高级编程功能  / 17

2.1 函数  / 18

2.1.1 计算并表示圆的面积  / 20

2.1.2 斐波那契数列  / 22

2.1.3 数学黑洞  / 23

2.2 数组  / 25

2.2.1 数组类型  / 26

2.2.2 多维数组  / 27

2.2.3 添加/删除数据  / 28

2.2.4 数组的常用功能  / 29

2.2.5 计算数组元素累加和  / 30

2.2.6 黑客帝国  / 31

2.2.7 运用二维数组  / 32

2.3 文本  / 33

2.4 游戏  / 36

2.4.1 精灵的创建、删除和位置  / 36

2.4.2 移动、反弹、旋转  / 36

2.4.3 多个精灵与碰撞检测  / 37

2.4.4 反弹球游戏  / 38

2.4.5 吃豆子游戏  / 39

2.4.6 躲炸弹游戏  / 41

2.5 图像  / 43

2.6 引脚  / 45

2.6.1 IO掌控  / 45

2.6.2 舵机  / 47

2.6.3 映射  / 50

2.6.4 I2C  / 54

2.6.5 SPI  / 57

2.7 在后台运行(多任务)  / 58

2.7.1 后台程序的基本结构  / 58

2.7.2 前、后台程序协同运行  / 60

2.7.3 多个后台任务  / 61

2.7.4 任务切换  / 62

2.7.5 多任务版躲炸弹游戏  / 64

2.8 事件  / 65

2.8.1 事件的基本形式  / 66

2.8.2 信息和事件驱动机制  / 67

2.8.3 主动诱发事件  / 68

2.8.4 按钮的按下、释放和点击事件  / 69

2.8.5 手势事件  / 69

2.9 其他功能  / 70

2.9.1 重置  / 71

2.9.2 微秒  / 71

2.9.3 设备名叫作和设备序列号  / 71

2.10 扩展  / 72

2.10.1 添加官方扩展  / 72

2.10.2 添加第三方扩展  / 74

2.10.3 删除扩展  / 76

第3章 移动终端APP的应用  / 77

3.1 蓝牙通信的扩展应用  / 78

3.1.1 添加蓝牙扩展  / 79

3.1.2 MakeCode中蓝牙服务  / 80

3.1.3 MakeCode中蓝牙应用  / 81

3.1.4 MakeCode中设备扩展  / 82

3.2 蓝牙安全模式  / 84

3.3 恢复默认出厂固件  / 85

3.4 常用的APP  / 86

3.5 micro:bit官方APP  / 86

3.5.1 配对模式  / 87

3.5.2 配对  / 88

3.5.3 联机  / 90

3.5.4 取消配对  / 91

3.5.5 下载APP自带例程  / 92

3.5.6 下载用户程序  / 94

3.5.7 安卓APP源码  / 96

3.6 用设备扩展与手机互动  / 96

3.6.1 蓝牙连接和断开事件  / 96

3.6.2 掌控相机  / 96

3.6.3 掌控音乐播放  / 99

3.6.4 发送警报  / 100

3.7 Bitty Blue  / 101

3.7.1 编写micro:bit程序  / 101

3.7.2 配置和连接  / 102

3.7.3 获取蓝牙服务  / 104

3.7.4 加速度测试  / 104

3.7.5 磁场服务  / 105

3.7.6 按钮服务  / 106

3.7.7 LED表示服务  / 106

3.7.8 温度服务  / 107

3.7.9 IO服务  / 107

3.7.10 设备信息服务  / 108

3.8 nRF Connect APP  / 108

3.9 micro:bit bitty controller  / 110

3.9.1 掌控命令  / 111

3.9.2 蓝牙遥控小车  / 113

3.10 串口通信  / 114

3.11 Droidscript  / 116

3.11.1 远程编程  / 118

3.11.2 文档和例程  / 120

3.11.3 发送数据到micro:bit  / 120

3.11.4 从micro:bit接收数据  / 122

3.11.5 micro:bit 插件API  / 123

第4章 编写MakeCode扩展程序  / 124

4.1 研发准备  / 125

4.2 创建自定义文件  / 127

4.3 模板文件  / 131

4.4 定义归类位置  / 133

4.5 定义颜色  / 134

4.6 定义图标  / 135

4.7 定义归类叫作  / 137

4.8 编程模块函数的形式  / 137

4.9 参数默认值  / 138

4.10 设置参数范围  / 138

4.11 自动创建变量  / 139

4.12 编程模块名叫作  / 140

4.13 编程模块的表示次序  / 141

4.14 参数不换行  / 141

4.15 分页表示  / 142

4.16 定义事件  / 143

4.17 编写代码和功能测试  / 145

4.18 扩展中的其他文件  / 146

4.19 创建项目并上传代码  / 149

4.20 测试扩展程序  / 152

4.21 变量和函数命名原则  / 152

4.21.1 Typescript原则  / 152

4.21.2 函数命令原则  / 154

第5章 应用技巧  / 155

5.1 运用安卓手机或平板电脑下载程序  / 155

5.1.1 准备工作  / 155

5.1.2 Python中webusb应用  / 156

5.1.3 MakeCode中webusb应用  / 158

5.2 MakeCode中的实验功能  / 160

5.2.1 开启实验功能  / 160

5.2.2 打印代码功能  / 162

5.2.3 绿屏功能  / 164

5.2.4 调试功能  / 166

5.2.5 接线说明功能  / 170

5.3 图形方式辅助学习代码编程  / 172

5.4 MakeCode编程技巧  / 173

5.4.1 运用模拟运行  / 173

5.4.2 运用调试功能  / 174

5.4.3 运用串口发送数据  / 174

5.4.4 运用MakeCode离线版  / 175

5.4.5 灵活运用扩展  / 176

5.4.6 运用Python辅助编程  / 176

5.4.7 运用代码编程方式输入程序  / 176

附录A MakeCode的几种版本  / 178

附录B micro:bit的Python彩蛋  / 184

附录C 参考资料  / 186

青少年人工智能学习丛书

智能硬件设计丛书





上一篇:刚才,Mind+ 支持micro:bit V2啦!
下一篇:用micro:bit做一个手机音乐遥控器
回复

使用道具 举报

3048

主题

3万

回帖

9606万

积分

论坛元老

Rank: 8Rank: 8

积分
96065846
发表于 2024-10-11 04:27:01 | 显示全部楼层
我赞同你的看法,你的智慧让人佩服,谢谢分享。
回复

使用道具 举报

3132

主题

3万

回帖

9996万

积分

论坛元老

Rank: 8Rank: 8

积分
99968646
发表于 2024-10-12 07:31:23 | 显示全部楼层
你的见解独到,让我受益匪浅,期待更多交流。
回复

使用道具 举报

3048

主题

3万

回帖

9606万

积分

论坛元老

Rank: 8Rank: 8

积分
96065846
发表于 2024-10-22 18:51:02 | 显示全部楼层
楼主继续加油啊!外链论坛加油!
回复

使用道具 举报

3062

主题

3万

回帖

9913万

积分

论坛元老

Rank: 8Rank: 8

积分
99139046
发表于 2024-11-9 09:40:11 | 显示全部楼层
谢谢、感谢、感恩、辛苦了、有你真好等。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

站点统计|Archiver|手机版|小黑屋|外链论坛 ( 非经营性网站 )|网站地图

GMT+8, 2024-11-23 00:21 , Processed in 0.104425 second(s), 21 queries .

Powered by Discuz! X3.4

Copyright © 2001-2023, Tencent Cloud.