Search Results - seeed

Grove – GPS Module 衛星模組 適用於 Arduino 與 Raspberry Pi

Grove – GPS 模組 適用於 Arduino 與 Raspberry Pi

Grove – GPS 模組是一款低成本及可程式設計的GPS模組,可用於手持設備GPS資料的採集。模組採用串口通信,可通過串口進行資料的讀取。它設有一個50通道的u-blox 5定位引擎,首次定位時間(TTFF)小於1s。跟蹤和採集的靈敏度均達到-160dBm,適用於個人導航及位置服務的專案。

Grove - GPS

規格

  • 輸入電壓:5V
  • 串列傳輸速率:4800 – 57600
  • Grove介面
  • 支援NMEA及U-Blox 6協定
  • 低功耗
  • 串列傳輸速率可配置

 

出貨清單

  • Grove – GPS x1
  • Grove連接線 x1

 

Documents

 

=========================================================

 

Grove – GPS

This Grove – GPS module is a cost-efficient and field-programmable gadget armed with a SIM28 (U-blox 6 is old version) and serial communication configuration. It features 22 tracking / 66 acquisition channel GPS receiver. The sensitivity of tracking and acquisition both reach up to -160dBm, making it a great choice for personal navigation projects and location services, as well as an outstanding one among products of the same price class.

Features

  • Input Voltage: 3.3/5V
  • BaudRate: 4800 – 57600( u-blox version)
  • BaudRate: 9600 – 115200
  • Default BaudRate: 9600
  • Supports NMEA and U-Blox 6 protocols.
  • Low power consumption
  • Baud rates configurable
  • Grove compatible interface

 

 

Grove Base Shield V2

Grove Base Shield V2 for Arduino 感測器擴充板

Grove Base Shield V2 for Arduino 感測器擴充板

Base Shield v2 是一款擴充板,其功能在於將 Arduino 開發板(主板)上的接腳以標準 Grove 接口形式呈現,以便於用戶連接其他 Grove 接口類型的傳感器(感測器),也避免了用戶在開發板上因過多跳線造成的連接失誤。這樣的一款擴充板 ,不僅方便用戶連線,也能讓開發變得更加簡潔快速且易於排障偵錯。

Base Shield V2

特徵:

相容性

  • 輸入電壓的相容性:Arduino系列產品使用的電壓大多為5v,而Mbed系列產品使用的電壓大多為3v,故而許多使用者提出了關於輸入電壓相容性問題,於是在Base Shield v2版本中,我們增加了輸入電壓切換開關。此開關功能在於切換Grove口的Vcc電壓。這樣,無論是將Base Shield插入Arduino或Mbed,Base Shield v2上輸出電壓都將和開發板輸入電壓保持一致。
  • 開發板相容問題:Arduino UNO、Mbed、Arduino Yún 等開發板的引腳各有細微不同,許多用戶提出了因購買不同開發板卻無法使用Base Shield的問題,此版本中,我們規範了Base Shield v2上所有的介面,即與最新版(R3)UNO排針管腳排序一致,確保其能與絕大部分開發板完全相容。
  • 目前此版本相容的開發板包括:Arduino UNO R3、Seeeduino v4、Seeeduino Arch、Arch Pro、Arduino Mega 2560、Arduino Leonardo、Arduino Due、Arduino Yún等。
    注意事項: 若將Base Shield v2與Seeeduino v3一起使用,需將P1及P2兩個焊盤焊接好。出廠時,這兩個焊盤默認不相連。

擴充板端口介紹

  • 介面:Base Shield v2一共有16個Grove介面,其中A0~A3為4個類比口,D2~D8為7個數位口,UART為串口,4個I2C埠。每個埠涉及的引腳絲印都已在正面標示。長排針的絲印標示在背面。(標準Grove口的展示)
  • 指示燈原理:Base Shield上電,綠色指示燈PWR常亮。

案例應用:

案例將用到Grove – Led及Grove – Button,這兩款產品的介面都是標準Grove介面,可以直接插在Base Shield上使用。

Grove Base Shield v2 擴充板

具體操作:將Grove – Button連接到Base Shield的D2座子上,Grove – LED連接到D3座子上。當然你也可以將它們連接到其它座子上,前提是修改代碼。

/*
 The circuit:
* LED attached from pin 3 to ground
* Button attached to pin 2 from +5V
* 10K resistor attached to pin 2 from ground 
* Button Control An LED 
*/

int button = 2; //the Grove port No. you attached a button to
int LED = 3; //the Grove port No. you attached an LED to
void setup(){
pinMode(button, INPUT); //set button as an INPUT device
pinMode(LED, OUTPUT); //set LED as an OUTPUT device
}
void loop(){
int buttonState = digitalRead(button); //read the status of the button
if(buttonState == 1) //get pressed on
digitalWrite(LED,1); //turn on the LED
else
digitalWrite(LED,0); //or not
}

當按下按鍵時,Led燈將點亮;放開按鍵時,Led燈將熄滅。Base Shield的用處就在於,避免用跳線進行複雜的連接。

 

出貨清單:

  • Base Shield V2 x1

 

Documents

 

Base Shield V2

Arduino Uno is the most popular Arduino board so far, however it is sometimes frustrating when your project requires a lot of sensors or Leds and your jumper wires are in a mess. The purpose of creating the Grove – Base Shield is to help you getting rid of bread board and jump wires. With the rich grove connectors on the base board, you can add all the grove modules to the Arduino Uno very conveniently!

Features

There are intotal 16 grove connectors on the Base Shield, here we use a table to show the details.

Apart from the rich grove connectors, on the board you can also see an RST button, a green LED to indicating power status, ICSP pin, a toggle switch and four row of pinouts. There is no need to explain the RST button and LED, but you really need to know below two features that is very important for your usage.

1.Power Compatible:

Every Grove connector has four wires, one of which is the VCC. However, not every micro-controller main board needs a supply voltage of 5V, some need 3.3V. That’s why we add a power toggle switch to Base Shield v2 so that you can select the suitable voltage of the micro-controller main board you are using via this switch.

For example, if you are using Arduino UNO with Base Shield v2, please turn the switch to 5v position; while using Seeeduino Arch with Base Shield v2, please turn the switch to 3.3v.

2.Board Compatible:

The pinout of Base Shield V2 is the same as Arduino Uno R3, however Arduino Uno is not the board one that the Base Shield V2 is compatible with, here we listed the boards that we have confirmed that can be used with Base Shield V2.

  • Arduino Uno
  • Seeeduino V4.2
  • Arduino Mega / Seeeduino Mega
  • Seeduino LoraWan
  • Arduino Leonardo / Seeeduino Lite
  • Arduino 101
  • Arduino Due
  • Intel Edison
  • Linkit One

Note

  • If using Base Shield v2 with Seeeduino V3, please solder the pads, P1 and P2.

Grove Base Shield V2

 

 

2W 5.5V 單晶矽太陽能電池板 80X180 mm2

2W 5.5V 單晶矽太陽能電池板 80X180 mm2

本款太陽能充電板是由單晶矽所製成,因此它能達到17%的能源轉化效能。太陽能板具備環氧樹脂表面塗層與堅固的背面封裝構造,使得本產品耐用適合戶外的使用環境。

產品本身具備一個 2.0mm JST 連接頭。您可以透過本產品與大多數能夠使用太陽能供電的 MCU單片板或嵌入式系統配合使用。我們提供一系列完整的太陽能充電解決方案,讓您的設備可以在室外無固定電源供應的情況下,提供一個完善的太陽能電池供電系統,讓您的設備不再受制於環境限制。

2W 5.5V 單晶矽 太陽能 電池板

規格

  • 產品尺寸: 180x80x2.5(±0.2) mm
  • 典型電壓: 5.5V
  • 典型電流: 360mA
  • 開路電壓: 8.2V
  • 最大工作電壓: 6.4V

 

使用環境與設備要求

典型開放環形電路電壓約略高於 5V 的峰值電壓, 峰值電壓最高取決於光的強度,在晴朗萬里無雲的夏日午後,峰值電壓可以達到 10V。

為防止高電壓對 MCU 板或嵌入系統的損壞,需要透過穩壓板進行保護。可以選擇賣場中的 Lipo Rider 或 LiPo Rider Pro 穩壓板配合使用。5V 穩壓板,可充電 3.7V 鋰電池,並透過USB或太陽能充電輸出 5V至裝置上。形成絕佳的太陽能電源解決方案。

 

出貨清單

  • 2W 5.5V太陽能電池板 x1

 

=========================================================

 

2W Solar Panel 80X180

This solar panel is made of single-crystal material that performs high solar energy transformation efficiency at 17%. It has a fine resin surface and sturdy back suitable for outdoor environments. A 2mm JST connecter is attached to the penal, which makes it perfect to team up with most of our can-use-solar-power-supply boards, like Seeeduino microcontroller series, Lipo Rider charging boards seriesand XBee carrier WSN products series.

The typical open circuit voltage is around 5V, depending on light intensity. In those bright summer days with clear sky and big sun, the peak OC voltage can rush up to 10V. To prevent any damage to boards that accept a narrow range of input voltage, like Lipo Rider, it’s recommended to check whether the OC voltage is safe before any connection.

Features

  • Dimensions: 180x80x2.5(±0.2) mm
  • Typical voltage: 5.5V
  • Typical current: 360mA
  • Open-circuit voltage: 8.2 V
  • Maximum load voltage: 6.4V

 

 

1.5W 5.5V 單晶矽太陽能電池板 81X137 mm2

1.5W 5.5V 單晶矽太陽能電池板 81X137 mm2

本款太陽能充電板是由單晶矽所製成,因此它能達到17%的能源轉化效能。太陽能板具備環氧樹脂表面塗層與堅固的背面封裝構造,使得本產品耐用適合戶外的使用環境。

產品本身具備一個 2.0mm JST 連接頭。您可以透過本產品與大多數能夠使用太陽能供電的 MCU單片板或嵌入式系統配合使用。我們提供一系列完整的太陽能充電解決方案,讓您的設備可以在室外無固定電源供應的情況下,提供一個完善的太陽能電池供電系統,讓您的設備不再受制於環境限制。

1.5W 5.5V 單晶矽太陽能電池板

規格

  • 產品尺寸: 137x81x2.5(±0.2) mm
  • 典型電壓: 5.5V
  • 典型電流: 270mA
  • 開路電壓: 8.2V
  • 最大工作電壓: 6.4V

 

使用環境與設備要求

典型開放環形電路電壓約略高於 5V 的峰值電壓, 峰值電壓最高取決於光的強度,在晴朗萬里無雲的夏日午後,峰值電壓可以達到 10V。

為防止高電壓對 MCU 板或嵌入系統的損壞,需要透過穩壓板進行保護。可以選擇賣場中的 Lipo Rider 或 LiPo Rider Pro 穩壓板配合使用。5V 穩壓板,可充電 3.7V 鋰電池,並透過USB或太陽能充電輸出 5V至裝置上。形成絕佳的太陽能電源解決方案。

 

出貨清單

  • 1.5W 5.5V太陽能電池板 x1

 

=========================================================

 

1.5W Solar Panel 81X137

This solar panel is made of single-crystal material that performs high solar energy transformation efficiency at 17%. It has a fine resin surface and sturdy back suitable for outdoor environments. A 2mm JST connecter is attached to the penal, which makes it perfect to team up with most of our can-use-solar-power-supply boards, like Seeeduino microcontroller series, Lipo Rider charging boards seriesand XBee carrier WSN products series.
The typical open circuit voltage is around 5V, depending on light intensity. In those bright summer days with clear sky and big sun, the peak OC voltage can rush up to 10V. To prevent any damage to boards that accept a narrow range of input voltage, like Lipo Rider, it’s recommended to check whether the OC voltage is safe before any connection.
Features
  • Dimensions: 137x81x2.5(±0.2) mm
  • Typical voltage: 5.5V
  • Typical current: 270mA
  • Open-circuit voltage: 8.2 V
  • Maximum load voltage: 6.4V

 

0.5W 5.5V 單晶矽太陽能電池板 55×70 mm2

0.5W 5.5V 單晶矽太陽能電池板 55×70 mm2

本款太陽能充電板是由單晶矽所製成,因此它能達到17%的能源轉化效能。太陽能板具備環氧樹脂表面塗層與堅固的背面封裝構造,使得本產品耐用適合戶外的使用環境。

產品本身具備一個 2.0mm JST 連接頭。您可以透過本產品與大多數能夠使用太陽能供電的 MCU單片板或嵌入式系統配合使用。我們提供一系列完整的太陽能充電解決方案,讓您的設備可以在室外無固定電源供應的情況下,提供一個完善的太陽能電池供電系統,讓您的設備不再受制於環境限制。

0.5W 5.5V 單晶矽 太陽能充電板

產品相關資料

  • 產品尺寸: 70x55x3(±0.2) mm
  • 典型電壓: 5.5V
  • 典型電流: 100mA
  • 開路電壓: 8.2V
  • 最大工作電壓: 6.4V

使用環境與設備要求

典型開放環形電路電壓約略高於 5V 的峰值電壓, 峰值電壓最高取決於光的強度,在晴朗萬里無雲的夏日午後,峰值電壓可以達到 10V。

為防止高電壓對 MCU 板或嵌入系統的損壞,需要透過穩壓板進行保護。可以選擇賣場中的 Lipo Rider 或 LiPo Rider Pro 穩壓板配合使用。5V 穩壓板,可充電 3.7V 鋰電池,並透過USB或太陽能充電輸出 5V至裝置上。形成絕佳的太陽能電源解決方案。

出貨清單

  • 0.5W太陽能電池板 x1

 

=========================================================

 

0.5W Solar Panel 55×70

Many people like solar energy because it is simple, clean and renewable. Especially when you are building outdoor projects, solar energy is one of the best solutions for power supply. Depending on the project you are going to build, there are many different sizes of solar panel to choose, If you are looking for a portable solar panel, why not look at this small solar panel that we are going to introduce today—–0.5W Solar Panel 55×77.
0.5W Solar Panel 55×77 is monocrystalline silicon solar panel, which is the main trend in the future. Comparing to polycrystalline silicon solar panel and thin-film solar panel, monocrystalline silicon solar panel performs higher conversion rate that up to 17%. The surface is covered by fine resin which makes it waterproof, together with a very sturdy back, it is really suitable for outdoor environment.
Depending on light intensity, the typical open circuit voltage is 5V. If you take it to a summer day with bright sunshine and no cloud in the sky, the peal OC voltage can be up to 10V. Because the voltage range is relatively wide, if you are going to use boards that require narrow range of input voltage, such as Lipo Rider, to prevent any damage, please check whether the OC voltage is acceptable for the board before any connection.
To begin with, we recommend you to choose some of the solar panel compatible board produced by Seeed such as Seeeduino microcontroller series, Lipo Rider charging board series and Xbee Carrier WSN products series. Since A 2mm JST connector is attached to the panel, it is perfect to team up with the boards that recommended above.
Despite all the goof features, it is really a very cheap solar panel among solar panel kits. Again, if you are looking for portable solar panels for sale, 0.5W Solar Panel 55×77 is the best choice!

Features

  • Dimensions: 70x55x3(±0.2) mm
  • Typical voltage: 5.5V
  • Typical current: 100mA
  • Open-circuit voltage: 8.2 V
  • Maximum load voltage: 6.4V

 

台灣物聯科技 出貨最迅速