mirror of
https://github.com/LCTT/TranslateProject.git
synced 2024-12-26 21:30:55 +08:00
Update and rename sources/tech/20210906 Learn everything about computers with this Raspberry Pi kit.md to translated/tech/20210906 Learn everything about computers with this Raspberry Pi kit.md
Translated by XiaotingHuang22. 辛苦审核啦!
This commit is contained in:
parent
903923d179
commit
c6a8058d1a
@ -1,148 +0,0 @@
|
||||
[#]: subject: "Learn everything about computers with this Raspberry Pi kit"
|
||||
[#]: via: "https://opensource.com/article/21/9/raspberry-pi-crowpi2"
|
||||
[#]: author: "Seth Kenlon https://opensource.com/users/seth"
|
||||
[#]: collector: "lujun9972"
|
||||
[#]: translator: "XiaotingHuang22"
|
||||
[#]: reviewer: " "
|
||||
[#]: publisher: " "
|
||||
[#]: url: " "
|
||||
|
||||
Learn everything about computers with this Raspberry Pi kit
|
||||
======
|
||||
The CrowPi is an amazing Raspberry Pi project system housed in a
|
||||
laptop-like body.
|
||||
![Teacher or learner?][1]
|
||||
|
||||
I like history, and I like computers, so I enjoy hearing stories about computing before computers were an everyday household appliance, much less a personal accessory. [One tale I hear often][2] is about how the computers of long ago (in computer years, anyway) were pleasantly basic. They were so basic, in fact, that it was relatively trivial for a curious user to figure out how to program one. Looking at modern computers, with object-oriented programming languages, complex GUI frameworks, network APIs, containers, and more, there's genuine concern that the tools of the computing trade have become essentially inaccessible to anyone without specialized training.
|
||||
|
||||
From the day the Raspberry Pi was released in 2012, it has always been intended as an educational platform. Several third-party vendors support the Pi with add-ons and training kits to help learners of all ages explore programming, physical computing, and open source. However, until recently, it's largely been up to the user to figure out how all the pieces on the market fit together. And then I got a CrowPi.
|
||||
|
||||
![CrowPi more than a laptop][3]
|
||||
|
||||
The CrowPi is not a laptop.
|
||||
(Seth Kenlon, [CC BY-SA 4.0][4])
|
||||
|
||||
### Introducing the CrowPi2
|
||||
|
||||
Crows are surprisingly intelligent birds. They recognize and remember faces, mimic sounds they've heard, solve complex puzzles, and even use tools to accomplish a task. It's fitting that the CrowPi uses the crow as its logo and namesake because this device is packed with opportunities for exploration, experimentation, education, and, best of all, fun.
|
||||
|
||||
The design itself is clever: It looks like a laptop, but it's much more than that. When you lift the Bluetooth keyboard from the case, it reveals a hidden electronics workshop, complete with an LCD screen, 16 buttons, dials, RFID sensor, proximity sensor, breadboard, speakers, GPIO connections, a LED array, and much more. _And it's all programmable._
|
||||
|
||||
As its name implies, the unit itself is powered entirely by a Raspberry Pi, securely fastened within the underside of the case.
|
||||
|
||||
![crowpi pi board][5]
|
||||
|
||||
The CrowPi Pi board.
|
||||
(Seth Kenlon, [CC BY-SA 4.0][4])
|
||||
|
||||
By default, you're meant to power the unit with a power adapter, and it ships with a wall adapter that you can plug into the case rather than powering the Pi directly. You can also use a battery supply plugged into an external micro-USB port. There's even a drawer built into the case so you can store your battery pack. When you do this, there's a USB cable popping out of the battery drawer and into the case power port, so there's no illusion that this is a "normal" laptop. However, with a device like this, that's pretty much the desired aesthetic!
|
||||
|
||||
### First boot
|
||||
|
||||
The CrowPi2 ships with Raspbian installed on a microSD card labeled **System**, although it includes a second microSD card loaded with [RetroPie][6], too. Being a responsible adult, I booted RetroPie first, naturally.
|
||||
|
||||
RetroPie is always fun, and the CrowPi2 ships with two SNES-style game controllers to ensure you have the optimal retro gaming experience.
|
||||
|
||||
Booting to the actual system is, amazingly, just as fun and arguably more so. The login manager is a custom project hub with quick links to sample coding projects, the Python and Arduino IDEs, Scratch, sample Python games, Minecraft, and more. You can also choose to exit the project hub and just use the desktop.
|
||||
|
||||
![CrowPi hub][7]
|
||||
|
||||
The CrowPi Hub.
|
||||
(Seth Kenlon, [CC BY-SA 4.0][4])
|
||||
|
||||
The desktop is familiar to anyone used to the Raspberry Pi or Linux in general, but it's basic enough that it's easy to learn, too. There's an application menu in the top left, shortcut icons on the desktop, a system tray for network selection and volume control in the top right, and so on.
|
||||
|
||||
![CrowPi Desktop][8]
|
||||
|
||||
The CrowPi Desktop.
|
||||
(Seth Kenlon, [CC BY-SA 4.0][4])
|
||||
|
||||
There's so much available on the CrowPi that it might be difficult to decide where to start. For me, there were four broad categories: Programming, physical electronics, Linux, and gaming.
|
||||
|
||||
There's an instruction manual in the box, so you know what you need to connect (for instance, the keyboard is battery-powered, so it does need charging sometimes, and it and the mouse always require a USB dongle). It's a quick read, though, and just one of the many examples of how seriously the CrowPi team takes documentation.
|
||||
|
||||
![CrowPi Docs][9]
|
||||
|
||||
The CrowPi Docs.
|
||||
(Seth Kenlon, [CC BY-SA 4.0][4])
|
||||
|
||||
### Programming
|
||||
|
||||
If you're keen to learn how to code, there are many paths to success on the CrowPi. You should take the path that you find the most satisfying.
|
||||
|
||||
#### 1\. Scratch
|
||||
|
||||
[Scratch][10] is a simple visual coding application that lets you make games and interactive stories using code blocks that fit together like [Lego pieces][11]. It's the easiest way to begin coding, and I've seen kids as young as eight spend hours puzzling over the optimal algorithm for a game of their own design. Of course, it's not only great for kids! Adults can have a lot of fun with it, too. Not sure where to start? There's a 99-page booklet (printed on actual paper) in the box with Scratch lessons and projects for you to try.
|
||||
|
||||
#### 2\. Java and Minecraft
|
||||
|
||||
Minecraft is not open source (although there are [several open source projects][12] that reimplement it), but there's enough source available that it's often used to teach programming. Minecraft was written in Java, and the CrowPi ships with both [Minecraft Pi Edition][13] and the [BlueJ Java IDE][14] to make learning Java easier and more fun than ever.
|
||||
|
||||
#### 3\. Python and PyGame
|
||||
|
||||
There are several really fun games on the CrowPi that were written in Python and the [PyGame game engine][15]. You can play the games and then look at the source code to find out how the game works. The Geany, Thonny, and [Mu][16] editors are included on the CrowPi, so you can start programming in Python right away. As with Scratch, there's a booklet in the box with lessons so you can learn Python basics.
|
||||
|
||||
### Electronics
|
||||
|
||||
The physical electronics workshop concealed under the keyboard is essentially an array of Pi Hats. The whole thing is mapped out on a fold-out diagram in both English and Chinese so that you can identify all the components. There are plenty of sample projects to get you started. Here's a small list:
|
||||
|
||||
* **Hello** prints "hello" on the LCD screen when you speak to the CrowPi.
|
||||
* **Intrusion alarm** sounds an alarm using the proximity sensor.
|
||||
* **Remote controller** enables you to use a remote control (yes, this too is included in the box) to trigger events on the CrowPi.
|
||||
* **RGB Tetris** lets you play a game of Tetris on an LED display.
|
||||
* **Voice recognition** demonstrates natural language processing.
|
||||
* **Ultrasonic music** creates a rudimentary Theramin using distance sensors and a speaker.
|
||||
|
||||
|
||||
|
||||
Those projects are just the beginning because you can build upon what exists. There's more to explore, of course. Patch cables, resistors, LEDs, and all sorts of components are included in the box so that you can learn all about the Pi's GPIO capabilities at your leisure.
|
||||
|
||||
One problem: The location of the sample projects is a little difficult to find. It's easy to find the demos (they're on the CrowPi hub screen), but the location of the source code isn't immediately obvious. It turns out that most of the sample projects are in `/usr/share/code`, which you can reach either through the file manager or a terminal.
|
||||
|
||||
![CrowPi Peripherals][17]
|
||||
|
||||
The CrowPi Peripherals
|
||||
(Seth Kenlon, [CC BY-SA 4.0][4])
|
||||
|
||||
### Linux
|
||||
|
||||
The Raspberry Pi runs Linux. If you've been meaning to learn more about Linux, the CrowPi is a great platform for that, too. You can explore the desktop, the terminal, and nearly any Linux or open source application you can find. If you've been reading about open source for years and are ready to dive into an open source OS, this could be a platform for that (and much more, obviously).
|
||||
|
||||
### Gaming
|
||||
|
||||
The **RetroPie** SD card included in the box means you can reboot into a retro game console and play any number of old-school arcade games. It's not exactly a Steam Deck, but it's a fun and inspiring little gaming platform. Because it comes with not one but two game controllers, it's ideal for couch co-op. And best of all, you not only can play games on the CrowPi, but you can make your own games, too.
|
||||
|
||||
### Screwdriver included
|
||||
|
||||
I got to sit down with the CrowPi2 for about two weeks, and I've barely been able to get through all of the projects. There have been many nights when I've had to force myself to step away from it because even after I've tired of one project, I inevitably find something else to explore. To sum it up, I found one component in particular in the box, and I immediately knew that the CrowPi and I were well suited to one another: It was a small, humble screwdriver. There's no voiding of warranty stickers here. The CrowPi wants you to tinker, to take things apart, explore, and learn. This isn't a laptop or even just a Pi; this is a portable, low-powered, diverse, and open source learner's toolkit.
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
via: https://opensource.com/article/21/9/raspberry-pi-crowpi2
|
||||
|
||||
作者:[Seth Kenlon][a]
|
||||
选题:[lujun9972][b]
|
||||
译者:[XiaotingHuang22](https://github.com/XiaotingHuang22)
|
||||
校对:[校对者ID](https://github.com/校对者ID)
|
||||
|
||||
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
|
||||
|
||||
[a]: https://opensource.com/users/seth
|
||||
[b]: https://github.com/lujun9972
|
||||
[1]: https://opensource.com/sites/default/files/styles/image-full-size/public/lead-images/osdc-lead-teacher-learner.png?itok=rMJqBN5G (Teacher or learner?)
|
||||
[2]: https://opensource.com/article/21/8/my-first-programming-language
|
||||
[3]: https://opensource.com/sites/default/files/crowpi-not-laptop.jpeg (CrowPi more than a laptop)
|
||||
[4]: https://creativecommons.org/licenses/by-sa/4.0/
|
||||
[5]: https://opensource.com/sites/default/files/crowpi-pi.jpeg (crowpi pi board)
|
||||
[6]: https://opensource.com/article/19/1/retropie
|
||||
[7]: https://opensource.com/sites/default/files/crowpi-hub.png (CrowPi hub)
|
||||
[8]: https://opensource.com/sites/default/files/crowpi-desktop.png (CrowPi desktop)
|
||||
[9]: https://opensource.com/sites/default/files/crowpi-docs.jpeg (CrowPi docs)
|
||||
[10]: https://opensource.com/article/20/9/scratch
|
||||
[11]: https://opensource.com/article/20/6/open-source-virtual-lego
|
||||
[12]: https://opensource.com/alternatives/minecraft
|
||||
[13]: https://www.minecraft.net/en-us/edition/pi
|
||||
[14]: https://opensource.com/article/20/7/ide-java#bluej
|
||||
[15]: https://opensource.com/downloads/python-gaming-ebook
|
||||
[16]: https://opensource.com/article/18/8/getting-started-mu-python-editor-beginners
|
||||
[17]: https://opensource.com/sites/default/files/crowpi-peripherals.jpeg (CrowPi peripherals)
|
@ -0,0 +1,148 @@
|
||||
[#]: subject: "Learn everything about computers with this Raspberry Pi kit"
|
||||
[#]: via: "https://opensource.com/article/21/9/raspberry-pi-crowpi2"
|
||||
[#]: author: "Seth Kenlon https://opensource.com/users/seth"
|
||||
[#]: collector: "lujun9972"
|
||||
[#]: translator: "XiaotingHuang22"
|
||||
[#]: reviewer: " "
|
||||
[#]: publisher: " "
|
||||
[#]: url: " "
|
||||
|
||||
Learn everything about computers with this Raspberry Pi kit 用树莓派了解关于计算机的一切
|
||||
======
|
||||
CrowPi 是一个超棒的树莓派项目系统,安装在一个笔记本电脑般的外壳里。
|
||||
![老师还是学习者?][1]
|
||||
|
||||
我喜欢历史,也喜欢计算机,因此相比于计算机如何变成个人配件,我更喜欢听它在成为日常家用电器前的有关电脑运算的故事。 [我经常听到的一个故事][2] 是关于很久以前(反正在计算机时代算久远了)的计算机是如何的基础却又让人感到很舒服。事实上,它们基础到对于一个好奇的用户来说,弄清楚如何编程是相对简单的事情。看看现代计算机,它具有面向对象的编程语言、复杂的 GUI 框架、网络 API、容器等,但愈发令人担忧的是,对于那些没有接受过任何专门培训的人,计算行业的工具正变得越来越难懂,无法为任何未经专门培训的人所用。
|
||||
|
||||
从 Raspberry Pi 在 2012 年发布之日起,它就一直被定位为一个教育平台。 一些第三方供应商通过附加组件和培训套件支持 Pi,以帮助所有年龄段的学习者探索编程、物理计算和开源。 然而,直到最近,很大程度上还是要由用户来弄清楚市场上的所有部件如何组合在一起,直到我最近买了 CrowPi。
|
||||
|
||||
![CrowPi ——不只是一个笔记本电脑][3]
|
||||
|
||||
CrowPi 不是一个笔记本电脑。
|
||||
(Seth Kenlon, [CC BY-SA 4.0][4])
|
||||
|
||||
### 隆重介绍 CrowPi2
|
||||
|
||||
乌鸦是非常聪明的鸟。 他们识别并记住面孔,模仿听到的声音,解决复杂的谜题,甚至使用工具来完成任务。 CrowPi 使用乌鸦作为其徽标和同名词是恰当的,因为这个设备提供了无限探索、实验、教育还有最重要的,乐趣的机会。
|
||||
|
||||
设计本身很巧妙:它看起来像笔记本电脑,但远不止于此。 当你从外壳中取出蓝牙键盘时,它会显示一个隐藏的电子设备工坊,配有 LCD 屏幕、16 个按钮、刻度盘、RFID 传感器、接近传感器、线路板、扬声器、GPIO 连接、LED 阵列等等。 _而且都是可编程的。_
|
||||
|
||||
顾名思义,该装置本身完全由 Raspberry Pi 供电,牢固地固定在外壳底部。
|
||||
|
||||
![crowpi pi板[5]
|
||||
|
||||
CrowPi 的 Pi板
|
||||
(Seth Kenlon, [CC BY-SA 4.0][4])
|
||||
|
||||
默认情况下,你应该用电源适配器为设备充电,包装附带一个壁式适配器,你可以将其插入外壳,而不是直接为 Pi 供电。 您还可以使用插入外部微型 USB 端口的电池电源。 电脑外壳内甚至还有一个抽屉,方便你存放电池。 存放电池时有一根 USB 线从电池抽屉中弹出并插入机箱电源端口,因此你不会产生这是一台“普通”笔记本电脑的错觉。 然而,这样一台设备能够有如此美观的设计已经很理想了!
|
||||
|
||||
### 首次启动系统
|
||||
|
||||
CrowPi2 提供一张安装了 Raspbian 系统,卡上贴有 **System** 的标签,不过它同时还提供一张装载了 [RetroPie][6] 的 microSD 卡。 作为一个负责任的成年人(咳咳),我自然是先启动了 RetroPie。
|
||||
|
||||
RetroPie 总是很有趣,CrowPi2 附带两个 SNES 风格的游戏控制器,确保你能获得最佳的复古游戏体验。
|
||||
|
||||
令人赞叹不已的是,实际启动系统的过程同样有趣,甚至可以说更有趣。 它的登录管理器是一个自定义项目中心,快速链接到一些编程体验项目、Python 和 Arduino IDE、Scratch、 Python 体验游戏、Minecraft 等。 你也可以选择退出项目中心,只使用桌面。
|
||||
|
||||
![CrowPi 中心][7]
|
||||
|
||||
The CrowPi 中心.
|
||||
(Seth Kenlon, [CC BY-SA 4.0][4])
|
||||
对于习惯使用 Raspberry Pi 或 Linux 的人来说,CrowPi 桌面很熟悉,不过它也足够基础,所以很容易上手。 左上角有应用程序菜单,桌面上有快捷图标,右上角有网络选择和音量控制的系统托盘等等。
|
||||
|
||||
![CrowPi 桌面][8]
|
||||
|
||||
CrowPi 桌面.
|
||||
(Seth Kenlon, [CC BY-SA 4.0][4])
|
||||
|
||||
CrowPi 上提供了很多东西选择,所以你可能很难决定从哪里开始。 对我来说,主要分为四大类:编程、物理电子学、Linux 和游戏。
|
||||
|
||||
盒子里有一本使用说明,所以你才知道你需要怎样进行连接(例如,键盘是电池供电的,所以它有时确实需要充电,它和鼠标总是需要一个 USB 适配器)。 虽然说明书很快就能读完,但这一例子也充分体现了 CrowPi 团队是如何认真对待说明书的。
|
||||
|
||||
![CrowPi 文档][9]
|
||||
|
||||
CrowPi 文档.
|
||||
(Seth Kenlon, [CC BY-SA 4.0][4]
|
||||
|
||||
|
||||
### 编程
|
||||
|
||||
如果你热衷于学习如何编码,在 CrowPi 上有很多途径助你成功。你应该从中选择你觉得最满意的路径。
|
||||
|
||||
#### 1\. Scratch
|
||||
|
||||
[Scratch][10] 是一个简单的视觉编码应用程序,可让你像拼 [Lego pieces 乐高拼块][11] 一样将代码块组合在一起,制作出游戏和互动故事。 这是开启编程之旅最简单的方法,我曾见过年仅 8 岁的孩子会花数小时思考自己设计的游戏的最佳算法。 当然,它不仅适合孩子们!成年人也可以从中获得很多乐趣。 不知道从哪里开始? 包装盒中有一本 99 页的小册子(打印在纸张上),其中包含 Scratch 课程和项目供你尝试。
|
||||
|
||||
#### 2\. Java 和 Minecraft
|
||||
|
||||
Minecraft 不是开源的(虽然有 [几个开源项目][12] 复刻了它),但它有足够的可用资源,因此也经常被用来教授编程。 Minecraft 是用 Java 编写的,CrowPi 同时装载有 [Minecraft Pi Edition][13] 和 [BlueJ Java IDE][14] ,如此可使学习 Java 变得比以往更容易、更有趣。
|
||||
|
||||
#### 3\. Python 和 PyGame
|
||||
|
||||
CrowPi 上有几个非常有趣的游戏,它们是用 Python 和 [PyGame game engine ( PyGame 游戏引擎)][15] 编写的。 你可以玩游戏,然后查看源代码以了解游戏的运行方式。 CrowPi 中包含 Geany、Thonny 和 [Mu][16] 编辑器,因此您可以立即开始使用 Python 进行编程。 与 Scratch 一样,包装盒中有一本包含课程的小册子,因此你可以学习 Python 基础知识。
|
||||
|
||||
### 电子器件
|
||||
|
||||
隐藏在键盘下的物理电子工坊本质上是一系列 Pi Hats(附着在上的硬件)。 为了让你可以认识所有的组件,CrowPi 绘制了一张中英双语的折叠图进行详细的说明。 除此之外还有很多示例项目可以帮助你入门。 以下是一张小清单:
|
||||
|
||||
|
||||
* **你好** 当你与 CrowPi 说话时,LCD 屏幕上打印输出“你好”。
|
||||
* **入侵警报**使用接近传感器发出警报。
|
||||
* **远程控制器** 让你能够使用远程控制(是的,这个也包含在盒子里)来触发 CrowPi 上的事件。
|
||||
* **RGB 俄罗斯方块** 让你可以在 LED 显示屏上玩俄罗斯方块游戏。
|
||||
* **语音识别**演示自然语言处理。
|
||||
* **超声波音乐** 利用距离传感器和扬声器创建简易版的特雷蒙琴(世上唯一不需要身体接触的电子乐器)。
|
||||
|
||||
|
||||
|
||||
这些项目仅仅是入门级别而已,因为你还可以在现有的基础上搭建更多东西。 当然,还有更多内容值得探索。 包装盒里还有网络跳线、电阻器、LED 和各种组件,这样你闲暇时也可以了解 Pi 的 GPIO (通用输入输出端口)功能的所有信息。
|
||||
|
||||
不过我也发现了一个问题:示例项目的位置有点难找。 找到演示很容易(它们就在 CrowPi 中心上),但源代码的位置并不是很容易被找到。 我后来发现大多数示例项目都在 `/usr/share/code` 中,你可以通过文件管理器或终端进行访问。
|
||||
|
||||
![CrowPi 外围设备][17]
|
||||
|
||||
CrowPi 外围设备
|
||||
(Seth Kenlon, [CC BY-SA 4.0][4])
|
||||
|
||||
### Linux
|
||||
|
||||
Raspberry Pi 上运行 Linux 系统。 如果你一直想更深入了解 Linux,那么 CrowPi 同样会是一个很好的平台。 你可以探索 Linux 桌面、终端以及几乎所有 Linux 或开源应用程序。 如果你多年来一直在阅读有关开源的文章,并准备深入研究开源操作系统,那么 CrowPi 会是你想要的平台(当然还有很多其他平台也可以)。
|
||||
|
||||
### 游戏
|
||||
|
||||
包装盒中包含的 **RetroPie** SD 卡意味着你可以重新启动,切换为复古游戏机并任意玩各种老式街机游戏。 它跟 Steam Deck 并不完全相同,但也是一个有趣且令人振奋的小游戏平台。 因为它配备的不是一个而是两个游戏控制器,所以它非常适合多人合作的沙发游戏。 最重要的是,你不仅可以在 CrowPi 上玩游戏,还可以制作自己的游戏。
|
||||
|
||||
### 配备螺丝刀
|
||||
|
||||
自我坐下开始使用 CrowPi2 以来已经大约两周,但我还没有通关所有项目。 有很多个晚上,我不得不强迫自己停下摆弄它,因为即使我厌倦了一个项目,我也会不可避免地发现还有其他东西可以探索。 文章的最后做个总结,我在盒子里找到了一个特别的组件,这个组件让我马上知道 CrowPi 和我就是天造地设:它是一把不起眼的小螺丝刀。 盒子上的保修标签不存在作废。 CrowPi 希望你去修补、拆解、探索和学习。 它不是笔记本电脑,甚至也不是 Pi; 而是一个便携、低功耗、多样化和开源的学习者工具包。
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
via: https://opensource.com/article/21/9/raspberry-pi-crowpi2
|
||||
|
||||
作者:[Seth Kenlon][a]
|
||||
选题:[lujun9972][b]
|
||||
译者:[XiaotingHuang22](https://github.com/XiaotingHuang22)
|
||||
校对:[校对者ID](https://github.com/校对者ID)
|
||||
|
||||
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
|
||||
|
||||
[a]: https://opensource.com/users/seth
|
||||
[b]: https://github.com/lujun9972
|
||||
[1]: https://opensource.com/sites/default/files/styles/image-full-size/public/lead-images/osdc-lead-teacher-learner.png?itok=rMJqBN5G (Teacher or learner?)
|
||||
[2]: https://opensource.com/article/21/8/my-first-programming-language
|
||||
[3]: https://opensource.com/sites/default/files/crowpi-not-laptop.jpeg (CrowPi more than a laptop)
|
||||
[4]: https://creativecommons.org/licenses/by-sa/4.0/
|
||||
[5]: https://opensource.com/sites/default/files/crowpi-pi.jpeg (crowpi pi board)
|
||||
[6]: https://opensource.com/article/19/1/retropie
|
||||
[7]: https://opensource.com/sites/default/files/crowpi-hub.png (CrowPi hub)
|
||||
[8]: https://opensource.com/sites/default/files/crowpi-desktop.png (CrowPi desktop)
|
||||
[9]: https://opensource.com/sites/default/files/crowpi-docs.jpeg (CrowPi docs)
|
||||
[10]: https://opensource.com/article/20/9/scratch
|
||||
[11]: https://opensource.com/article/20/6/open-source-virtual-lego
|
||||
[12]: https://opensource.com/alternatives/minecraft
|
||||
[13]: https://www.minecraft.net/en-us/edition/pi
|
||||
[14]: https://opensource.com/article/20/7/ide-java#bluej
|
||||
[15]: https://opensource.com/downloads/python-gaming-ebook
|
||||
[16]: https://opensource.com/article/18/8/getting-started-mu-python-editor-beginners
|
||||
[17]: https://opensource.com/sites/default/files/crowpi-peripherals.jpeg (CrowPi peripherals)
|
Loading…
Reference in New Issue
Block a user