หากต้องการใบเสนอราคา / ใบแจ้งหนี้ 
ติดต่อได้ทาง LINE Official: @mikroelec
  • จำนวนและราคาสินค้าที่มีอยู่จริงจะตรงกับในเว็บ
  • ถ้ากดใส่ตระกร้าได้แสดงว่ามีสินค้าพร้อมส่ง หากจำนวนไม่พอจะมีข้อความแจ้งจำนวนคงเหลือให้ทราบ
  • การรับ/ส่งสินค้ามี 3 รูปแบบคือ ส่งพัสดุ / มารับเองที่ร้าน / บริการแอปขนส่งเช่น Grab, LALAMOVE, ฺBolt, อื่นๆ



USB Host Shield for Arduino UNO MAX3421 USB HOST chip development board module

USB Host Shield for Arduino UNO MAX3421 USB HOST chip development board module
USB Host Shield for Arduino UNO MAX3421 USB HOST chip development board moduleUSB Host Shield for Arduino UNO MAX3421 USB HOST chip development board moduleUSB Host Shield for Arduino UNO MAX3421 USB HOST chip development board moduleUSB Host Shield for Arduino UNO MAX3421 USB HOST chip development board moduleUSB Host Shield for Arduino UNO MAX3421 USB HOST chip development board moduleUSB Host Shield for Arduino UNO MAX3421 USB HOST chip development board module
รหัสสินค้า SKU-02633
หมวดหมู่ Arduino shield & Accessories
ราคา 245.00 บาท
ลงสินค้า 6 มิ.ย. 2567
อัพเดทล่าสุด 7 เม.ย. 2568
ขออภัย สินค้าหมด
บัตรประชาชน
บุ๊คแบ๊งค์
คุ้มครองโดย LnwPay
  • จำนวนและราคาสินค้าที่มีอยู่จริงจะตรงกับในเว็บ
  • ถ้ากดใส่ตระกร้าได้แสดงว่ามีสินค้าพร้อมส่ง หากจำนวนไม่พอจะมีข้อความแจ้งจำนวนคงเหลือให้ทราบ
  • การรับ/ส่งสินค้ามี 3 รูปแบบคือ ส่งพัสดุ / มารับเองที่ร้าน / บริการแอปขนส่งเช่น Grab, LALAMOVE, ฺBolt, อื่นๆ

USB Host Shield มีชิปควบคุม MAX3421E ซึ่งทำหน้าที่เป็นโฮสต์ USB และมีซ็อกเกตให้เสียบอุปกรณ์ USB เข้าไปได้ นอกจากนี้ยังมีช่องเสียบสำหรับเชื่อมต่อกับบอร์ด Arduino ด้วย ทำให้สามารถสั่งงานหรืออ่านข้อมูลจากอุปกรณ์ USB ผ่านทาง Arduino ได้

บอร์ดขยายชิ้นนี้มีประโยชน์สำหรับโปรเจกต์ที่ต้องมีการควบคุมหรือรับข้อมูลจากอุปกรณ์ USB ต่างๆ ผ่านทางอาดูอิโน่ เช่น โปรเจกต์ด้านความปลอดภัย, อุตสาหกรรม หรือระบบอัตโนมัติต่างๆ

Description

The Arduino USB Host Shield is a versatile board designed to provide USB interface capabilities to Arduino boards, allowing seamless connectivity with various USB devices. With the ability to stack multiple USB devices onto an Arduino, this shield opens up possibilities for connecting keyboards, mice, Bluetooth dongles, barcode readers, and even smartphones.

The key component onboard is the MAX3421, serving as a USB host/SPI converter IC. The shield is compatible with both Arduino Uno and Mega, offering a 5V/3.3V selection feature that enables use with 3.3V boards.

Note: The shield's VBUS power and power selection components are not yet soldered.

Specifications:

Works with standard (dual 5/3.3V) and 3.3V-only boards (e.g., Arduino Pro).

Operates over an extended temperature range of -40°C to +85°C.

Complies with USB Specification Revision 2.0 (Full-Speed 12Mbps Peripheral, Full-/Low-Speed 12Mbps/1.5Mbps Host).


Supported Devices:

HID Devices: Keyboard, mouse, joystick.

Game Pads: PS3, PS4, XBOX360, Wii, etc.

USB-Serial Converters: FTDI, PL-2303, GPS, etc.

ADK Android Phones and Tablets.

Digital Cameras: Canon EOS, Powershot, Nikon DSLR, and P&S.

Storage Devices: USB Memory, SD card reader, hard disk.

Bluetooth Dongles.

Compatible with Arduino Boards:

Arduino Uno 328.

Arduino Diecimila / Duemilanove 328.

Arduino Mega 2560 (recommended).

 

Arduino Mega 1280.


Pinout Clarification: 

  1. Power Select: 2 solder jumpers for 5V and 3.3V power configurations.
  2. Power Pins: Connect to Arduino board power pins (RESET, 3.3V, 5V, and GROUND).
  3. Analog Pins: Unused by the shield; provided for convenience.
  4. GPIN Pins: Eight 3.3V general-purpose digital input pins of MAX3421E.
  5. ICSP Connector: Used for SPI interface data transfer.
  6. GPOUT Pins: Eight 3.3V general-purpose digital output pins of MAX3421E.
  7. Digital I/O Pins 0-7: Unused by the shield.
  8. Digital I/O Pins 8-13: Default configuration uses pins 9 and 10 for INT and SS signals.
  9. MAX3421E Interface Pads: Used for shield modifications and expansion.
  10. VBUS Power Pad: Used in advanced power configurations.


Arduino Library for USB Host Shield 2.0:

Documentation

 

Library  USB_Host_Shield
Application Note -

โคดตัวอย่าง

#include <usbhub.h>
// สร้างออบเจ็กต์ USB Host Shield
USBHub Hub1 (&Usb);
void setup() {
  Serial.begin(115200);
  Serial.println("Start");
  // เริ่มการทำงานของ USB Host
  if (Usb.Init() == -1) {
    Serial.println("OSC did not start.");
  }
  delay(200);
}
void loop() {
  // รอการเชื่อมต่ออุปกรณ์ USB
  Usb.Task();
  // ถ้าพบอุปกรณ์ USB ให้แสดงข้อความ
  if (Hub1) {
    Hub1.poll();
    deviceDetected();
  }
}
// ฟังก์ชันสำหรับแสดงข้อมูลเมื่อตรวจพบอุปกรณ์ USB
void deviceDetected() {
  Serial.print("Address: ");
  Serial.print(Hub1.getAddress(), HEX);
  Serial.print(":\r\n");
}

วิธีการชำระเงิน

บมจ. ธนาคารกสิกรไทย สาขาโรบินสัน ศรีสมาน ออมทรัพย์
พร้อมเพย์ สาขา- mobile
Scan this!
ไมโครอิเล็กทรอนิกส์
098-xxxxxx-9
Accept All Banks | รับเงินได้จากทุกธนาคาร

นโยบายการเปลี่ยนหรือคืนสินค้า

หากสินค้าชำรุดหรือใช้งานไม่ได้ สามารถขอเปลี่ยนสินค้าได้ภายใน 7 วัน

หมายเหตุ
ต้องไม่เสียหายอันเกิดจากใช้งานผิดพลาด ใช้ผิดวิธี ต่อไฟผิดขั้ว จ่ายไฟเกินกำหนด หรืออื่นๆที่ตรวจสอบแล้วไม่ได้เกิดจากความผิดพลาดจากการผลิตสินค้า


ค้นหาเลขพัสดุ/Track

  • ค้นหา
*ใส่ เบอร์มือถือ หรือ email ที่ใช้ในการสั่งซื้อ

Categories

เซนเซอร์(Senser)/ โมดูล(Module) [503]
อุปกรณ์ / อะไหล่อิเล็กทรอนิกส์ (Electronic component) [495]

Statistic

หน้าที่เข้าชม563,672 ครั้ง
ผู้ชมทั้งหมด321,315 ครั้ง
ร้านค้าอัพเดท19 ต.ค. 2568

Member

รายการสั่งซื้อของฉัน
เข้าสู่ระบบด้วย
เข้าสู่ระบบ
สมัครสมาชิก

ยังไม่มีบัญชีเทพ สร้างบัญชีใหม่ ไม่มีค่าใช้จ่าย
สมัครสมาชิก (ฟรี)
รายการสั่งซื้อของฉัน
ข้อมูลร้านค้านี้
ร้านMikroElectronic
MikroElectronic
จำหน่ายอุปกรณ์อิเล็กทรอนิกส์ โมดูล เครื่องมือ และอุปกรณ์ต่างๆ arduino อาดูโน อะไหล่เครื่องใช้ไฟฟ้า อะไหล่อิเล็กทรอนิกส์ รับออกแบบวงจร เขียนโปรแกรมด้วยอาดูโน รับทำโครงงาน นักเรียนนักศึกษา ให้คำปรึกษาแก้ปัญหาโครงงาน ออกแบบและสร้างงานต้นแบบ ร้านตั้งอยู่ ซอยร่วมสุข ปทุมธานี สถานที่ใกล้เคียง ดอนเมือง สรงประภา ศรีสมาน นนทบุรี แจ้งวัฒนะ
เบอร์โทร : 0984829329
อีเมล : mikroelec@gmail.com
ส่งข้อความติดต่อร้าน
เกี่ยวกับร้านค้านี้
สินค้าที่ดูล่าสุด
ดูสินค้าทั้งหมดในร้าน
สินค้าที่ดูล่าสุด
บันทึกเป็นร้านโปรด
Join เป็นสมาชิกร้าน
แชร์หน้านี้
แชร์หน้านี้

TOP เลื่อนขึ้นบนสุด
พูดคุย-สอบถาม