Difference between revisions of "Sensor-Line Finder"

From Microduino Wiki
Jump to: navigation, search
(Created page with "{{Language|Microduino-Line-track }} {| style="width: 800px;" |- | 400px|thumb|right| Microduino-Line-track Microduino-Line-track is infrar...")
 
Line 3: Line 3:
 
|-
 
|-
 
|
 
|
[[File: Microduino-Line_track.jpg|400px|thumb|right| Microduino-Line-track]]
+
[[File: Microduino-Line_track.jpg|400px|thumb|right| Sensor-Line Finder]]
  
Microduino-Line-track is infrared module, which can be used to find line.
+
The product number of Sensor-Line Finder is: '''MSDI41'''
  
The detection principle of the black line is that the infrared transmitting tube emits light to the road, and the infrared light is reflected by the white floor, and the receiver receives the reflected light.  
+
Sensor-Line Finder is an IR reflection sensor module, which can serve as line finder.
 +
 
 +
The principle of black line detection is: the infrared emitting tube emits light ray to the surface of the road, the IR light will be reflected when touching the white road, and the receiving tube will receive the reflecting light.  
  
  

Revision as of 08:25, 10 November 2016

Language: English  • 中文
Sensor-Line Finder

The product number of Sensor-Line Finder is: MSDI41

Sensor-Line Finder is an IR reflection sensor module, which can serve as line finder.

The principle of black line detection is: the infrared emitting tube emits light ray to the surface of the road, the IR light will be reflected when touching the white road, and the receiving tube will receive the reflecting light.




Instruction of the Sensor Pin

Sensor backpin.png
  • Pins of the sensor:
    • PIN1: GND
    • PIN2: VCC
    • General signal pins:
      • PIN3(IO1): digital/analog signal
      • PIN4(IO2): NC(null)
    • Special signal pins:
      • If it is IIC: IO1/IO2 are respectively SDA/SCL.
      • If it is soft serial port: IO1/IO2 are respectively tx/rx.
  • Special to Sensor-Line Finder sensor pins
    • PIN1: GND
    • PIN2: VCC
    • PIN3(IO1): Analog signal input
    • PIN4(IO2): NC


Microduino sensor can communicate with core module through the connection with Microduino-Module Sensor Hub.

Features

  • With high detection sensitivity and good stability
  • With small size

Specification

  • Electric specification
    • 3.3V~5V working voltage
    • Input device
  • Technical parameters
    • Introduction of pins: GND, VCC, signal output, and NC(null).
    • Digital input
  • Size
    • Size of the switch: 5mm*10mm
    • Size of the board: 20mm*10mm
  • 1.27mm-spacing 4Pin interface
  • Output: Digital signal
  • Connection
    • This output signal is digital signal, so it should be detected by signal ports(D0~D13). You can connect it to pin 3~10 of Sensor-hub, and the corresponding pins are D0, D2, D4, D6, D8, D10, D12.
MCookie-sensorhub rule.JPG

Document


Development

Preparation


Program

  • Open Arduino IDE, choose File→Examples→Basics→DigitalReadSerial, the sample program, select the right board card, and download directly after compiling.
MCookie-crashCodeExample.JPG
  • int pushButton = 6; Define the input pin is D6, which is modifiable, such as linePin.
  • pinMode(pushButton, INPUT); Define pushButton as input pin.
  • int buttonState = digitalRead(pushButton); Read the value of the input pin pushButton.


Hardware Setup

  • Connect sensor lineTrack with the digital port D6 of Sensorhub, which is the pin that define the pushButton above, which is modifiable, such as linePin.
  • You can refer to : Microduino-Sensorhub
Microduino-sensorhub 6.JPG
MCookie-sensorhub 6.JPG
  • Connect Sensorhub with lineTrack, and connect them to the computer with USB cable.
  • Select the right board card and COM port, and directly download after compiling. You can refer to AVR Core:Getting Started
Upload.JPG
  • After download, you can open the serial monitor. The returned value is “0” if there is no obstacle approaching to the sensor; if there is, the returned value is “1”, and through this it can judge whether there is something approaching to it.


Application

It can be used to detect obstacles and infrared emission, as a line finding sensor.


Purchase

History

Gallery

  • Front
Microduino-Line-track Front
  • Back
Microduino-Line-track Back