Skip to main content

micro:bit resource and reference 相關資源與列表

micro:bit resource and reference
相關資源與列表



micro:bit,micro,bit,resource,reference ,website,list,資源,列表

Protol入口網站



Micro:bit Educational Foundation | micro:bit
The Micro:bit Foundation is a global non-profit organisation making invention with technology fun for everyone!
micro:bit官方主要網站入口。下面列有中文的入口網站,不過中文化程度不高,
只有首頁是中文,連結後的網頁都是英文。

Micro:bit Foundation (香港繁體)

Micro:bit Foundation (中國簡體)


Hardware Resoures 硬體介紹與資源



BBC micro:bit | Mbed
Mbed 上關於 micro:bit 的資料,有很詳細 microbit mbed c++ 的教學以及資源。


micro:bit Schematics
micro:bit Hardware/IC/Circuit 硬體電路介紹,零組件的Specification規格。


micro:bit Reference Design
Design Circuit Schematics Gerber BOM 線路設計、線路圖資源介紹與連結。


BBC micro:bit Circuit Schematics on GitHub
microbit-foundation/microbit-reference-design: micro:bit Reference Design
Design Circuit Schematics Gerber BOM 線路設計、線路圖 Github 檔案。




Learning Course 網站課程





一起来用JavaScript积木块编辑器编程 | micro:bit
中文說明,英文連結

getting started - makecode.microbit.org

Lessons - Microsoft MakeCode

Projects - Microsoft MakeCode

Documentation - Microsoft MakeCode

micro:bit : Touch Develop Documentation

micro:bit : Block Editor Lessons

micro:bit : Games


Intro to CS 計算機科學導論(英文網頁)
A 14 week Introduction to Computer Science course.

micro:bit runtime 執行時期程式庫

UARTService - micro:bit runtime

BBC micro:bit MicroPython documentation
— BBC micro:bit MicroPython 0.0.1 documentation


Home | Mbed (Micro:bit C++ COmplier)


micro:bit developer community and technical resources
相關討論及資源


Features of the JavaScript Editor - Microsoft MakeCode
Microsoft MakeCode 使用的 Static TypeScript 語言介紹




Blog and Other  Resources 及其他資源


A curated list of BBC micro:bit resources. - carlosperate/awesome-microbit:
Micro:bit 資源列表 整理好相當完整的資源,編輯環境,函式庫
#Contents Programming Visual Python JavaScript / MakeCode C/C++ Other micro:bit Languages Other Interaction Languages Programming Tools Mobile Apps ChromeOS Apps Interface Chip Hardware CAD & 3D Printing Projects Articles Videos Books Teaching Resources Community Miscellaneous


micro:bit资源大全中文版 - wwj718/awesome-microbit-zh


Micro:bit研究 - 阿玉micro:bit研究區

吉哥的分享

進學國小資訊組 - Micro:bit 資源分享







Social Network and Group 社群與社團


micro:bit Croatia

Taiwanbit/Microbit/Calliopemini/Chibibit/Sinobit/WiFiBoy論壇

Arduino Scratch Microbit KSRobot 機械人 分享區

麥客樂彼特(Micro:bit)太好玩社

Microbit & STEAM AStar 社團

Microbit & STEAM Shop




相關新聞



BBC 正式推出微型電腦「Micro:bit」,免費供百萬名學童學習程式 | TechNews 科技新報

只要500元,BBC微型電腦Micro:bit全球開賣!|數位時代

BBC 正式推出微型電腦「Micro:bit」,免費供百萬名學童學習程式 | TechNews 科技新報


Comments

Popular posts from this blog

KSB037 Motor Board 馬達板擴充積木

KSB037 Motor Board 馬達板擴充積木 key: makeblock,microbit,motor Description 說明: 使用 KSB037 Motor Board 馬達板擴充積木 https://github.com/edisonchiu/pxt-motor-KSB037 History v0.1 來源版本 https://github.com/lioujj/KSB037 v0.2 修正字串錯誤 Step 步驟: 1. Makeblock -> Advanced -> Add Package 2. 在 Search or enter project URL… 輸入擴充積木網址,      https://github.com/edisonchiu/pxt-motor-KSB037 3. 按下搜尋會出現擴充積木,按下去新增擴充積木 4. 積木區就會出現新的積木可以用了。 KSB037 馬達擴充板 擴充積木測試程式 KSB037_CustomBlock_Test 目的說明: 按下按鈕可以測試馬達和板子是否正常運作 注意事項: 馬達擴充板 外接馬達需要外接電源,且電源開關需要開啟。 馬達擴充板 指撥開關 2,3,4,5 需要在 ON 的狀態。 功能說明: 按 A 左邊馬達往前全速(1023)運轉。 按 B 右邊馬達往前全速(1023)運轉。 按 A+B 兩邊邊馬達同時往前全速(1023)運轉。 以上皆非則馬達停止顯示中心一個點。 micro:bit - KSB037 Motor Simple Test (JavaScript) Source Code 源碼如下:

Image Decoder - Grasshopper

  Image Decoder Details 詳細解說: // 宣告變數 img, 型態自動依初始值設為字串 // 設定初始值為存放影像編碼 var img = "ewvveewvvw wiiwiiw webbwbbew weeggweggw ewyyewyyew woowoowe wrreewrrw"; 程式一開始宣告變數 img 存放影像編碼,影像編碼內穿插了 ‘e’ 這個字元符號,這個多餘的字元符號可以是任何沒有使用到的字元都可以替代,例如使用 ‘x’,或是使用兩種以上都可以,不過程式解碼時要記得都要濾掉。 這些多餘的字元符號把原來的圖案弄亂,所以可以讓不知道解碼的人看不出來是什麼圖案。如果我們收到知道如何解碼,可以把 'e' 字元符號去掉(Filter out 'e’),就可以看到原來的圖案了 IMAGE DATA // 原來要顯示的圖樣 空白字元表示換行 var img =      "wvvwvvw wiiwiiw wbbwbbw wggwggw wyywyyw woowoow wrrwrrw" IMAGE DATA ENCODE // 影像編碼內穿插了 ‘e’ 這個字元符號,把原來的圖案弄亂 var img = "ewvveewvvw wiiwiiw webbwbbew weeggweggw ewyyewyyew woowoowe wrreewrrw" // 解碼部分,依序判斷陣列中的字元不為’e’ 則畫出編碼內容方塊 for (var letter of img) {   if (letter !== ‘e’) {     drawBoxes(letter);   } } // 將變數 img 印出,  print(img); 因為我們並沒有改變 img 內容,所以 img 內容仍是含有 ’e’ 字元未解碼的狀態  YOUR CODE // 宣告變數 img, 型態自動依初始值設為字串 // 設定初始值為存放影像編碼 var img = "ewvveewvvw wiiwiiw webbwbbew weeggweggw ewyyewyyew woo...

RF Remote 遙控器

  # RF Remote 遙控器發射端 -------------------------------------------------------- StartUp 當啟動時() sendZeroSet搖桿校正 Radio Group 廣播群組設為 = 1 -------------------------------------------------------- Forever 重複無限次() X1 Y1 = (x,y) buttonProc按鈕程序 -------------------------------------------------------- KEY D sendZeroSet搖桿校正 -------------------------------------------------------- buttonProc 按鈕程序() KEY   1 2 3 45670 -------------------------------------------------------- sendZeroSet 搖桿校正() X0 Y0 = (x,y) -------------------------------------------------------- # RF Car 機器人接收端 # Variables 變數定義 ---------------------------------------- KEY 0=未按下 1=A,2=B,..34567(按鍵) X0,Y0 類比搖桿初始位置值 X,Y 類比搖桿移動位置值 X=X1-X0,Y=Y1=Y0 speed = min(abs(Y)*2,1023) speed_L = speedFitRange(speed+(X*2)) speed_R = speedFitRange(speed-(X*2)) ---------------------------------------- # Status Flag 狀態旗標 flag_set_zero 類比搖桿是否有歸零 flag_update 是否有收到更新值 flag_run 馬達是否啟動 --------------------------------...