洋天科技洋天科技
公司簡介訂購方式匯款確認檔案下載 聯絡我們保固說明訂單查詢討論區
電子郵件:

密碼:

忘記密碼
加入會員
  首頁 | 原廠 Arduino® | 特殊服務設計 | 轉接座及轉接板/麵包板 | 開發板/燒錄器/模擬器 | 相容 For Arudino® 週邊及配件 | 旭日 RDK開發板 系列 | OKdo系列 | Saleae 系列 | Adafruit 系列 | ArduCam 系列 | Camera 攝像頭 | ROCK 系列 | Debix系列開發板 | Raspberry Pi 樹莓派 | Banana Pi 香蕉派 | BeagleBone 狗骨頭 | M5Stack系列 | Micro:bit (BBC)系列 | NVIDIA Jetson Nano系列 | Pololu 系列 | Pycom 系列 | Seeed 系列 | Sparkfun 系列 | WeMos 系列 | 傳感器 | Cubieboard/CubieTruck系列 | Firefly 系列 | Microduino系列 | Orange Pi 香橙派 | PCB板 | PLC 系列 | Robot 機器人 | UDOO 系列 | RedBearLab 系列 | LattePanda系列 | LittleBits 系列 | Libelium 系列 | Luxonis 相機系列 | PCduino | RobotElectronics 系列 | MageDok 顯示屏 | LCD/LCM/TFT/LVDC | Dimension Engineer 系列 | 通訊模組 | 影音器材(含轉換器) | 線材/連結器/轉換器 | 測量儀器 | 馬達/馬逹控制器/電源模組 | 其他 | 焊接/維修工具 | IC零件 | LED燈-裝飾燈 | 工作站迷你電腦 mini PC | 擴大器 | 雕刻機 | 電池 | 電腦周邊 | AI 顯卡 | 停售商品
  首頁 » 商品目錄 » Seeed 系列 » Grove 傳感器系列 » 7640
商品搜尋 進階
 |  購物車內容  |  結帳   
商品分類
  聯發科 LinkIt
  Grove Kit 套件
  Grove 傳感器系列
  Grove 擴展板/轉接板
  ReSpeaker 系列
  RF Explorer系列
  Solar Panel 太陽能板 系列
  Wio系列 Wio Link/Wio Node/Wio LTE
  Bluetooth Bee藍芽 (LoRa)Wireless無線
  Bus Blaster 系列
  Crazyflie系列
  DSO 系列
  FiPy 系列
  flick系列
  GPS GSM GPRS 系列
  LCD OLED 屏
  LED燈
  RFID/WIFI系列
  Xadow 系列
  套餐
  Al Linke
  Dangerous Prototypes
  RePhone系列
  Seeed Studio
  Tessel 系列
  Machine Vision
  Prototyping
  線材
  Robot Kit
  停售/停產
  MicroPython系列
  ODYSSEY - X86 系列
Arduino
Pololu
Seeed
Sparkfun
robot-electronics
dimensionengineering
libelium
adafruit
udoo
redbearlab
Arducam
goembed
Saleae
okdo
服務台
公司簡介
退換貨服務
訂購方式
聯絡我們
匯款確認
[<< 前一頁]  瀏覽相同分類產品 86 / 220  [下一頁 >>]
Grove - Line Finder v1.1 循跡模組5V (101020009/新101020172)
NT$198
運費NT$50
條碼7640
產品說明0

※本產品原廠代理從國外進口,有些交期較長,下訂前請詢問!

Grove - Line Finder v1.1 循跡模組5V (101020009/新101020172)

Description

    Most of automated robotic projects start from a line-following robot, Grove - Line finder v1.1 is designed to achieve this task easily and quickly. Those eye-like sensors on the board are actually IR emitting LED and sensitive phototransistor. When the phototransistor detects the reflected infrared light from the IR emitting LED, it will output a digital signal, which changes from HIGH to LOW.

Features

  • Easy to use
  • Integrated indicator LED
  • Digital output
  • Adjustable detecting range.

Specifications

  • Power supply: 5V DC
  • Digital output mode: TTL (High when black is detected, Low when white is detected)
  • Connector: 4 pin Buckled Grove interface
  • Dimension: 20mm*20mm
  • Comparator: LMV358
  • Photo reflective diode: RS-06WD

資料http://wiki.seeedstudio.com/Grove-Line_Finder/

支持的平台 

Arduinoino

Raspberry Pi

BeagleBone

WIO

LinkIt ONE

入門

第1步。準備下面的東西(Prepare the below stuffs):

Seeeduino V4.2

Base Shield

Grove - Button

在這裡輸入圖像描述 在這裡輸入圖像描述 在這裡輸入圖像描述

第2步。Connect Grove-line finder to port D3 of Grove-Base Shield。

第3步。Plug Grove - Base Shield into Seeeduino。

第4步Connect Seeeduino to PC through a USB cable。

 

注意 如果我們沒有Grove Base Shield,我們也可以直接將Grove-Line發現者連接到Seeeduino,如下所示。

 
Seeeduino Grove-Line finder
5V Red
GND Black
Not Conencted White
D3 Yellow

 

Software

Step 1. Copy the code into Arduino IDE and upload.

//------------------------------------------------------------ 
//Name: Line finder digital mode
//Function: detect black line or white line
//Parameter: When digital signal is HIGH, black line
// When digital signal is LOW, white line
//-------------------------------------------------------------
int signalPin = 3; // connected to digital pin 3
void setup() {
pinMode(signalPin, INPUT); // initialize the digital pin as an output:
Serial.begin(9600); // initialize serial communications at 9600 bps:
}
// the loop() method runs over and over again,
// as long as the Arduino has power
void loop()
{
if(HIGH == digitalRead(signalPin))
Serial.println("black");
else Serial.println("white"); // display the color
delay(1000); // wait for a second
}
Step 2. Open the serial port and we will see "black" when put the sensor on top of black lines and "white" when on white area.

white
white 
white 
black 
black 
black 
black 
black

Play With Raspberry Pi 樹莓派

第1步。準備下面的東西(Prepare the below stuffs):

Raspberry pi

GrovePi_Plus

Grove - Button

enter image description here enter image description here 在這裡輸入圖像描述

第2步。Plug the GrovePi_Plus into Raspberry。

第3步。Connect Grove-Line Finder to D7 port of GrovePi_Plus。

第4步Connect the Raspberry to PC through USB cable。

Software

Step 1. Follow Setting Software to configure the development environment

Step 2. Git clone the Github repository.
cd ~
git clone https://github.com/DexterInd/GrovePi.git
 Step 3. Excute below commands.
cd ~/GrovePi/Software/Python
python grove_line_finder.py
 Here is the grove_line_finder.py code.
import time
import grovepi

# Connect the Grove Line Finder to digital port D7
# SIG,NC,VCC,GND
line_finder = 7

grovepi.pinMode(line_finder,"INPUT")

while True:
       try:
           # Return HIGH when black line is detected, and LOW when white line is detected
           if grovepi.digitalRead(line_finder) == 1:
                print ("black line detected")
           else:
                print ("white line detected")

            time.sleep(.5)

     except IOError:
            print ("Error")
Step 4. We will see black line detected when the sensor is on top of black line.
pi@raspberrypi:~/GrovePi/Software/Python $ python grove_line_finder.py 
black line detected
black line detected
white line detected
white line detected

Resources

問與答

目前沒有任何商品問答!
本商品上架日期:2013-07-12.
評價
購物車 更多
空的...
查詢訂單狀態
 
請輸入您的訂單編號
商品通知狀態 更多
通知Grove - Line Finder v1.1 循跡模組5V (101020009/新101020172)
更新時通知我
推薦給朋友
 
推薦這個商品給朋友

聯絡方式:手機:0933807110 或 0968222607
E-mail:i0104@ms13.hinet.net(主要信箱) & i03070309@yahoo.com.tw(次要) & a_te0307@hotmail.com & A9215017@mail.ntust.edu.tw & r94922042@ntu.edu.tw