Difference between revisions of "Microduino Tutorials and Projects"

From Microduino Wiki
Jump to: navigation, search
(Microduino Blynk Tutorials)
(Microduino IOT Projects -Advanced)
 
(41 intermediate revisions by 4 users not shown)
Line 16: Line 16:
 
[[file:Microduino-logo3.png|200px|left]]
 
[[file:Microduino-logo3.png|200px|left]]
 
|
 
|
 +
==Microduino-LPC Entry & Advanced Tutorial==
 +
*'''[[LPC Core:Getting started]]'''
 +
*'''[[LPC Core:Project Transplanting Note]]'''
 +
|-
 +
|
 +
[[file:Microduino-logo3.png|200px|left]]
 +
|
 +
==Microduino-MK22 Entry & Advanced Tutorial==
 +
*'''[[MK22 Core:Getting started]]'''
 +
*'''[[MK22 Core:Project Transplanting Note]]'''
  
==Microduino-STM32 Entry & Advanced Tutorials==  
+
|-
 +
|
 +
[[file:Microduino-logo3.png|200px|left]]
 +
|
 +
 
 +
==Microduino-EFM32 Entry & Advanced Tutorial==
 +
*'''[[EFM32 Core:Getting started]]'''
 +
*'''[[EFM32 Core:Project Transplanting Note]]'''
 +
 
 +
|-
 +
|
 +
[[file:Microduino-logo3.png|200px|left]]
 +
|
 +
 
 +
==Microduino-STM32 Entry & Entry Tutorials==  
 
*'''[[STM32 Core: Getting Started]]'''
 
*'''[[STM32 Core: Getting Started]]'''
 
*'''[[STM32 Core: Project Tutorials]]'''
 
*'''[[STM32 Core: Project Tutorials]]'''
Line 67: Line 91:
 
*'''[[Open Source Self-balance Robot System]]'''
 
*'''[[Open Source Self-balance Robot System]]'''
 
*'''[[Open Source Electric Drive Cube Robot]]'''
 
*'''[[Open Source Electric Drive Cube Robot]]'''
*'''[[开源音乐播放器/zh]]'''
+
*'''[[Open Source Music Player]]'''
*'''[[开源条码刷卡音乐播放器/zh]]'''
+
*'''[[Open Source Barcode Swiping-card Music Player]]'''
*'''[[Open Source WiFi Weather Station]]'''
+
*'''[[Open Source WiFi Weather Station System]]'''
*'''[[开源WiFi气象站系统(ESP连接Blynk)/zh]]'''
+
*'''[[Open Source Smart Bluetooth Lights Illuminator]]'''
*'''[[开源智能蓝牙彩灯照明器/zh]]'''
+
*'''[[Open Source Smart Bluetooth Lights Illuminator(Somatosensory)]]'''
*'''[[开源智能蓝牙彩灯照明器(体感)/zh]]'''
+
*'''[[Open Source Smart Rainbow Music Touch Lamp]]'''
*'''[[开源智能彩虹音乐触摸灯/zh]]'''
+
*'''[[Open Source Voice Decibel Detector]]'''
*'''[[开源声音分贝检测仪/zh]]'''
+
*'''[[Open Source Web Camera System]]'''
*'''[[开源网络摄像系统/zh]]'''
+
*'''[[Open Source Smart Egg Demo System]]'''
*'''[[开源智能鸟蛋演示系统/zh]]'''
+
*'''[[Open Source Smart Socket]]'''
*'''[[开源智能插座(ESP连接Blynk)/zh]]'''
+
*'''[[Open Source Welcome Door Report]]'''
*'''[[开源智能插座/zh]]'''
+
*'''[[Open Source Voice Scene Light]]'''
*'''[[开源迎门汇报/zh]]'''
+
*'''[[Open Source LED Dot Matrix Clock]]'''
*'''[[开源语音情景灯/zh]]'''
+
*'''[[Open Source LED Dot Matrix Screen]]'''
*'''[[开源LED点阵时钟/zh]]'''
+
*'''[[Open Source Smart Desktop Alert Base]]'''
*'''[[开源LED点阵屏幕/zh]]'''
 
*'''[[开源智能桌面提醒底座/zh]]'''
 
  
  
Line 92: Line 114:
 
{| style="width: 800px;"| colspan="2" |
 
{| style="width: 800px;"| colspan="2" |
  
== Overview & Introduction==
+
=Microduino Blynk Tutorials=
* Editor: Ray
 
==Application background==
 
  
* To create your own APP for networking projects and equipments
 
* To use microduino or mCookie with the ESP8266 module [[Microduino-WIFI(ESP)]] and [[mCookie-WiFi]] as the networking equipment
 
* Of course, you can also work with Arduino, raspberry pie and other hardwares as the networking equipment
 
  
==Get & configure Blynk==
+
|-
 +
| style="width:250px" | [[File:Microduino-Blynk.jpg|200px|left]]
 +
|
 +
==Microduino Blynk Tutorials==
  
===Acquire Blynk mobile phone client ===
+
*'''[[Microduino-Blynk Getting Started]]'''
  
* Go to the Blynk official website: http://www.blynk.cc/
+
|-
* Click Getting Started to enter: http://www.blynk.cc/getting-started/
+
|
[[File:BlynkSetting0.png||600px|center]]
+
|}
* You can download mobile phone client of the IPone and Android version here
 
  
===Register account ===
 
* Open the Blynk App to register an account (if already registered, please jump out of this step)
 
* Enter the following interface, click '''Create New Account '''
 
[[File:BlynkSettingSignUp.png||200px|center]]
 
* Input '''E-mail'''and'''Passwrod'''and click'''Sign Up'''
 
[[File:BlynkSettingSignUp1.png||200px|center]]
 
* Then, enter interface '''Connecting...'''
 
[[File:BlynkSettingSignUp2.png||200px|center]]
 
  
  
 
+
{| style="width: 800px;"| colspan="2" |
===Create Project ===
 
* Open mobile Blynk app, and click on the plus sign you can create a project:
 
[[File:BlynkSetting1.png||200px|center]]
 
* You need to give your project a name, such as: Weather Station
 
* At the same time, AUTH TOKEN below will show verification code generated by this project.
 
* You can click the E-mail button, and the verification code will be sent to your mailbox.
 
* Or long press AUTH TOKEN and copy it to the clipboard
 
* The test verification code is private, please don't tell others.
 
[[File:BlynkSetting2.png||200px|center]]
 
 
 
===Configure verification code, SSID and password ===
 
* Copy the verification code to replace the auth[] variable in your program, generally in the user_def.h file.
 
<source lang="cpp">
 
#define SSID "type your ssid"
 
#define PASS "type your pass"
 
 
 
char auth[] = "type your blynk token";
 
</source>
 
 
 
* Replace the router's SSID and password at the same time.
 
  
 
=Microduino Project Tutorials=
 
=Microduino Project Tutorials=
Line 154: Line 145:
 
*'''[[Emo-light情绪台灯/zh]]'''
 
*'''[[Emo-light情绪台灯/zh]]'''
 
*'''[[Microduino植物别摸我/zh]]'''
 
*'''[[Microduino植物别摸我/zh]]'''
*'''[[智能垃圾桶/zh]]'''
+
*'''[[Smart Garbage Can]]'''
*'''[[智能体重秤/zh]]'''
+
*'''[[Smart Scale]]'''
 
*'''[[Microduino GPS recorder-306KIT]]'''
 
*'''[[Microduino GPS recorder-306KIT]]'''
 
+
*'''[[Microduino Dot Matrix Module Displays BMP Colored Image]]'''
 
|-
 
|-
 
|
 
|
Line 173: Line 164:
 
*'''[[Microduino NFC Unlocks Computer]]'''
 
*'''[[Microduino NFC Unlocks Computer]]'''
 
*'''[[Microduino 自动抽屉/zh]]'''
 
*'''[[Microduino 自动抽屉/zh]]'''
*'''[[Microduino 笔记本电脑的智能底座设计/zh]]'''
+
*'''[[Microduino Design of Laptop Computer Intelligence Base]]'''
 
*'''[[Microduino LED摇摇棒/zh]]'''
 
*'''[[Microduino LED摇摇棒/zh]]'''
 
*'''[[Microduino Matrix Keyboard Coded Lock]]'''
 
*'''[[Microduino Matrix Keyboard Coded Lock]]'''
Line 180: Line 171:
 
*'''[[Microduino 无线鼠标/zh]]'''
 
*'''[[Microduino 无线鼠标/zh]]'''
 
*'''[[Microduino 计算器/zh]]'''
 
*'''[[Microduino 计算器/zh]]'''
 
+
*'''[[Microduino Laser Engraving]]'''
 
|-
 
|-
 
|
 
|
Line 242: Line 233:
 
*'''[[Microduino icroduino Rotary encoder chooses the mobile number and sends message]]'''
 
*'''[[Microduino icroduino Rotary encoder chooses the mobile number and sends message]]'''
 
*'''[[Microduino Microduino Number Selecting and Text Messaging through the Key]]'''
 
*'''[[Microduino Microduino Number Selecting and Text Messaging through the Key]]'''
* '''[[Microduino NRF Controls Household Application]]'''
 
* '''[[Microduino Phone Bluetooth Controls Household Applications]]'''
 
 
*'''[[Microduino W5500控制家用电器/zh]]'''
 
*'''[[Microduino W5500控制家用电器/zh]]'''
 
*'''[[Microduino wifi控制家用电器/zh]]'''
 
*'''[[Microduino wifi控制家用电器/zh]]'''
 
*'''[[Microduino Zigbee组网控制家用电器/zh]]'''
 
*'''[[Microduino Zigbee组网控制家用电器/zh]]'''
 
*'''[[Microduino Zigbee组网获取传感器数据/zh]]'''
 
*'''[[Microduino Zigbee组网获取传感器数据/zh]]'''
*'''[[Microduino Enc Wired network experiment -302KIT]]'''
+
*'''[[Microduino Enc Wired network experiment -302KIT/zh]]'''
 
*'''[[Microduino NRF communication-201KIT]]'''
 
*'''[[Microduino NRF communication-201KIT]]'''
 
*'''[[Microduino Ward Calling System]]'''
 
*'''[[Microduino Ward Calling System]]'''
Line 258: Line 247:
 
*'''[[远程植物养护学习系统/zh]]'''
 
*'''[[远程植物养护学习系统/zh]]'''
 
*'''[[水质监测/zh]]'''
 
*'''[[水质监测/zh]]'''
 +
*'''[[Microduino微信公众平台控制/zh]]'''
 +
*'''[[Microduino 气象站微信平台控制/zh]]'''
 
*'''[[Microduino Wifi gets weather information by the internet -203KIT]]'''
 
*'''[[Microduino Wifi gets weather information by the internet -203KIT]]'''
 
*'''[[Microduino NRF Wireless Gateway based on Enc Gateway -304 KIT]]'''
 
*'''[[Microduino NRF Wireless Gateway based on Enc Gateway -304 KIT]]'''
Line 263: Line 254:
 
*'''[[MicroLAMP WiFi彩灯/zh]]'''
 
*'''[[MicroLAMP WiFi彩灯/zh]]'''
 
*'''[[Microduino-WiFi Controls LED]]'''
 
*'''[[Microduino-WiFi Controls LED]]'''
*'''[Microduino BLE IOS-202KIT]]'''
+
*'''[[Microduino BLE IOS-202KIT]]'''
 
*'''[[Microduino BLE Android-202KIT]]'''
 
*'''[[Microduino BLE Android-202KIT]]'''
 
*'''[[Microduino 手机蓝牙控制电视/zh]]'''
 
*'''[[Microduino 手机蓝牙控制电视/zh]]'''
Line 272: Line 263:
 
|}
 
|}
 
{| style="width: 800px;"| colspan="2" |
 
{| style="width: 800px;"| colspan="2" |
 
  
 
=Microduino Research =
 
=Microduino Research =
Line 293: Line 283:
  
  
 +
==Microduino Programming Tutorial==
 +
*'''[[Arduino Syntax Manual]]'''
 +
*'''[[TFT_ST7735 Syntax Manual]]'''
 
|-
 
|-
 
|
 
|

Latest revision as of 05:35, 30 September 2016

Microduino UPin27 Tutorials

Microduino-logo3.png

Microduino Entry & Advanced Tutorials


Microduino-logo3.png

Microduino-LPC Entry & Advanced Tutorial

Microduino-logo3.png

Microduino-MK22 Entry & Advanced Tutorial

Microduino-logo3.png

Microduino-EFM32 Entry & Advanced Tutorial

Microduino-logo3.png

Microduino-STM32 Entry & Entry Tutorials

Microduino-Mixly-rect.jpg

Mixly Graphical Programming Tutorials

Microduino-Scratch-rect.jpg

Scratch Drag and Drop Coding Tutorials

Processing Tutorials



Microduino Kit Series

Microduino-Joypad.jpg

Microduino Kit Tutorials


Microduino Blynk Tutorials

Microduino Blynk Tutorials


Microduino Project Tutorials

Microduino-Joypad QuadCopter-rect.jpg

Microduino Project Tutorials-Interactive

Microduino Project Tutorials-Control

Microduino Project Tutorials-Robot

Microduino Project Tutorials-Measurement


Microduino Project Tutorials -Game


Microduino IOT Projects

Microduino IOT Projects -Basic

Microduino IOT Projects -Advanced


Microduino Research

Microduino Research


Microduino Programming Tutorial