“指南针”的版本间的差异

来自Microduino Wikipedia
跳转至: 导航搜索
Objective
Pkj讨论 | 贡献
第2行: 第2行:
 
|-
 
|-
 
|
 
|
==Objective==
+
==目的==
  
The course will show you how to simulate a compass on Processing by presenting the data of magnetic field strength detected by Microduino-10DOF module.
+
本教程将教大家如何用Microduino-10DOF模块测到的磁场强度数据在Processing中显示一个指南针。
  
==Equipments==
+
==设备==
 
*'''[[Microduino-Core]]'''
 
*'''[[Microduino-Core]]'''
 
*'''[[Microduino-FT232R]]'''
 
*'''[[Microduino-FT232R]]'''
 
*'''[[Microduino-10DOF]]'''
 
*'''[[Microduino-10DOF]]'''
  
*Other Hardware Equipments
+
*其他硬件设备
**A USB cable
+
**USB数据连接线  一根
  
==Schematic Diagram==
+
==原理图==
  
The HMC5883L magnetic field strength sensor of Microduino-10DOF will be available.
+
直接使用Microduino-10DOF上的HMC5883L磁场强度传感器
  
==Program==
+
==程序==
  
Referring to  compassMicroduino
+
compassMicroduino
  
 
compass_simulator
 
compass_simulator
  
==Debugging==
+
==调试==
  
Step 1:Building the hardware environment according to the schematic diagram, just like this:
+
步骤一:按着原理图搭建硬件环境,像这样:
 
[[File:compass_simulatorConnectionDiagram.jpg|600px|center|thumb]]
 
[[File:compass_simulatorConnectionDiagram.jpg|600px|center|thumb]]
  
  
Step 2:Here is the code we need:
+
步骤二:解释一下代码:
  
The code of the two ends (Processing and Microduino) 
+
本例需要两端的代码,Processing端和Microduino端
  
 
Microduino:
 
Microduino:
  
//The data of the magnetic field strength will be exported into the serial port to be displayed on Processing 
+
//得到磁场强度数据后输出到串口以便Processing显示
  
 
   void loop()
 
   void loop()
第48行: 第48行:
 
Processing:
 
Processing:
  
//After getting the data of the first serial port, defining them or caching them if there is a new line  // is always my  Arduino, so I open Serial.list()[0].
+
//得到第一个串口的数据,并定义如果有换行就缓存
 +
  // is always my  Arduino, so I open Serial.list()[0].
 
   // Open whatever port is the one you're using.
 
   // Open whatever port is the one you're using.
 
   myPort = new Serial(this, Serial.list()[0], 9600);
 
   myPort = new Serial(this, Serial.list()[0], 9600);
 
   myPort.bufferUntil('\n'); // Trigger a SerialEvent on new line
 
   myPort.bufferUntil('\n'); // Trigger a SerialEvent on new line
  
//Presenting the data obtained from Microduino on the screen in the form of curves with different color and then marking them
+
//把从Microduino接收到的数据取出来后以不同颜色的曲线图的形式显示在屏幕上,并标上标尺
  
Function Description:
+
函数说明:
  
//Drawing a magnetic field pointer
+
//绘制磁场指针
 
arrow(int x1, int y1, int x2, int y2, color c)
 
arrow(int x1, int y1, int x2, int y2, color c)
  
//Judging whether can convert them into numbers
+
//判断是否可转换为数字
 
isNumeric(String str)
 
isNumeric(String str)
  
Step 3:Uploading the code and compiling them successfully.
+
步骤三:下载代码并编译通过。
  
Step 4:After the system goes smoothly, you can use a magnet to change the magnetic field and see if there is any change.
+
步骤四:运行后,用一块磁铁改变一下磁场,看看指针是否变化。
  
==Result==
+
==结果==
  
There will be a simple compass displayed on the screen and the pointer will change along with the magnetic field. As follows:
+
屏幕上会显示一个简单的指南针,指针会随着磁场走,像这样:
 
[[File:compass_simulatorResult.jpg|600px|center|thumb]]
 
[[File:compass_simulatorResult.jpg|600px|center|thumb]]
  
  
==Video==
+
==视频==
  
  
 
|}
 
|}

2014年5月21日 (三) 07:22的版本

目的

本教程将教大家如何用Microduino-10DOF模块测到的磁场强度数据在Processing中显示一个指南针。

设备

  • 其他硬件设备
    • USB数据连接线 一根

原理图

直接使用Microduino-10DOF上的HMC5883L磁场强度传感器

程序

见 compassMicroduino

compass_simulator

调试

步骤一:按着原理图搭建硬件环境,像这样:

Compass simulatorConnectionDiagram.jpg


步骤二:解释一下代码:

本例需要两端的代码,Processing端和Microduino端

Microduino:

//得到磁场强度数据后输出到串口以便Processing显示

 void loop()
 {
   mag.getHeading(&mx, &my, &mz);
   Serial.print(mx);
   Serial.print(",");
   Serial.println(my); 
 }

Processing:

//得到第一个串口的数据,并定义如果有换行就缓存

 // is always my  Arduino, so I open Serial.list()[0].
 // Open whatever port is the one you're using.
 myPort = new Serial(this, Serial.list()[0], 9600);
 myPort.bufferUntil('\n'); // Trigger a SerialEvent on new line

//把从Microduino接收到的数据取出来后以不同颜色的曲线图的形式显示在屏幕上,并标上标尺

函数说明:

//绘制磁场指针 arrow(int x1, int y1, int x2, int y2, color c)

//判断是否可转换为数字 isNumeric(String str)

步骤三:下载代码并编译通过。

步骤四:运行后,用一块磁铁改变一下磁场,看看指针是否变化。

结果

屏幕上会显示一个简单的指南针,指针会随着磁场走,像这样:


视频