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



GPS record expansion board with SD slot card for Arduino UNO R3

GPS record expansion board with SD slot card for Arduino UNO R3
GPS record expansion board with SD slot card for Arduino UNO R3GPS record expansion board with SD slot card for Arduino UNO R3GPS record expansion board with SD slot card for Arduino UNO R3GPS record expansion board with SD slot card for Arduino UNO R3GPS record expansion board with SD slot card for Arduino UNO R3
รหัสสินค้า SKU-02783
หมวดหมู่ ระบบเครือข่าย GPS / GPRS / GSM
ราคา 480.00 บาท
สถานะสินค้า พร้อมส่ง
ลงสินค้า 22 พ.ย. 2567
อัพเดทล่าสุด 17 มี.ค. 2568
จำนวน
ชิ้น
หยิบลงตะกร้า
บัตรประชาชน
บุ๊คแบ๊งค์
คุ้มครองโดย LnwPay
  • จำนวนและราคาสินค้าที่มีอยู่จริงจะตรงกับในเว็บ
  • ถ้ากดใส่ตระกร้าได้แสดงว่ามีสินค้าพร้อมส่ง หากจำนวนไม่พอจะมีข้อความแจ้งจำนวนคงเหลือให้ทราบ
  • การรับ/ส่งสินค้ามี 3 รูปแบบคือ ส่งพัสดุ / มารับเองที่ร้าน / บริการแอปขนส่งเช่น Grab, LALAMOVE, ฺBolt, อื่นๆ

GPS Shield นี้ใช้โมดูลรับสัญญาณ GPS NEO-6M ของ ublox Shield นี้เข้ากันได้กับขาของบอร์ด Arduino UNO, Mega, Leonardo และ Arduino Due ขา GPS RX และ TX สามารถกำหนดค่าให้เชื่อมต่อกับขา D0-D7 บน Arduino ได้ โดยใช้จัมเปอร์ที่สามารถกำหนดค่าใหม่ได้บนบอร์ดสำหรับการกำหนดเส้นทาง RX และ TX Shield นี้รองรับ Software Serial และยังมีอินเทอร์เฟซ MicroSD card สำหรับการใช้งานบันทึกข้อมูล

Shield นี้รองรับระดับ IO 3.3V และ 5V ดังนั้นบอร์ด Arduino ที่ทำงานบน IO 5V เช่น Arduino UNO, Mega 2560 หรือ Leonardo และบอร์ด Arduino อื่นๆ ที่ทำงานบน IO 3.3V เช่น Arduino Due สามารถทำงานร่วมกับ Shield นี้ได้ Arduino GPS shield เป็นบอร์ดโมดูล GPS breakout ที่ออกแบบมาสำหรับตัวรับระบบกำหนดตำแหน่งทั่วโลก (Global Positioning System) พร้อมอินเทอร์เฟซ SD ง่ายต่อการใช้งานสำหรับการบันทึกข้อมูลตำแหน่งลงในการ์ด SD ระดับแรงดันไฟฟ้าในการทำงานที่เข้ากันได้กับ 5V/3.3V ทำให้เข้ากันได้กับบอร์ด Arduino

Applications

  • Personal positioning
  • Automotive navigation
  • Fleet management
  • Marine navigation

Features

  • Concurrent reception of up to 3 GNSS (GPS, Galileo, GLONASS, BeiDou)
  • EEPROM for saving the configuration data when powered off
  • On board 3V super capacitor as backup battery
  • On board 3.3v regulator, 3.3V and 5V logic level compatible
  • Power and fix indicator LEDs
  • Reset Button
  • External GPS antenna

Specifications

  • Power Supply: 3.3 – 5V DC
  • Current: 30mA, max. spike 100mA
  • Interface: UART
  • Default Baud Rate: 9600 bps
  • Update rate: 1Hz (Default), 5Hz (Max)
  • Size: 53 x 60 mm
  • GPS Cable length: ~280cm (~9ft aprox)
  • Weight: 23g (shield only), 55g (gps antenna + cable)

Package Includes

  • 1 x NEO-6M GPS Shield for Arduino


โคดทดสอบเบื้องต้น

#include <SoftwareSerial.h>

// กำหนดขาสำหรับ SoftwareSerial
const int RXPin = 4;  // เสียบ jumper D4 เข้ากับขา Tx ของ Arduino
const int TXPin = 3;  // เสียบ jumper D3 เข้ากับขา Rx ของ Arduino

// ตั้งค่า Baud rate ของ GPS
const unsigned long GPSBaud = 9600;

// สร้าง object SoftwareSerial
SoftwareSerial gpsSerial(RXPin, TXPin);

void setup() {
  // เริ่ม Serial Monitor
  Serial.begin(9600);
  while (!Serial) {
    ; // รอจนกว่า Serial จะพร้อม
  }

  // เริ่ม SoftwareSerial สำหรับ GPS
  gpsSerial.begin(GPSBaud);

  Serial.println("GPS NEO-6M Test");
}

void loop() {
  // อ่านข้อมูลจาก GPS และแสดงผลใน Serial Monitor
  while (gpsSerial.available() > 0) {
    char c = gpsSerial.read();
    Serial.write(c);
  }
}

ผลการทดสอบ




โคดทดสอบแบบใช้ Library



#include <TinyGPS++.h>
#include <SoftwareSerial.h>
/*
   This sample sketch demonstrates the normal use of a TinyGPS++ (TinyGPSPlus) object.
   It requires the use of SoftwareSerial, and assumes that you have a
   4800-baud serial GPS device hooked up on pins 4(rx) and 3(tx).
*/
static const int RXPin = 4, TXPin = 3;
static const uint32_t GPSBaud = 9600;

// The TinyGPS++ object
TinyGPSPlus gps;

// The serial connection to the GPS device
SoftwareSerial ss(RXPin, TXPin);

void setup()
{
  Serial.begin(115200);
  ss.begin(GPSBaud);

  Serial.println(F("DeviceExample.ino"));
  Serial.println(F("A simple demonstration of TinyGPS++ with an attached GPS module"));
  Serial.print(F("Testing TinyGPS++ library v. ")); Serial.println(TinyGPSPlus::libraryVersion());
  Serial.println(F("by Mikal Hart"));
  Serial.println();
}

void loop()
{
  // This sketch displays information every time a new sentence is correctly encoded.
  while (ss.available() > 0)
    if (gps.encode(ss.read()))
      displayInfo();

  if (millis() > 5000 && gps.charsProcessed() < 10)
  {
    Serial.println(F("No GPS detected: check wiring."));
    while(true);
  }
}


void displayInfo()
{
  Serial.print(F("Location: "));
  if (gps.location.isValid())
  {
    Serial.print(gps.location.lat(), 6);
    Serial.print(F(","));
    Serial.print(gps.location.lng(), 6);
  }
  else
  {
    Serial.print(F("INVALID"));
  }

  Serial.print(F("  Date/Time: "));
  if (gps.date.isValid())
  {
    Serial.print(gps.date.month());
    Serial.print(F("/"));
    Serial.print(gps.date.day());
    Serial.print(F("/"));
    Serial.print(gps.date.year());
  }
  else
  {
    Serial.print(F("INVALID"));
  }

  Serial.print(F(" "));
  if (gps.time.isValid())
  {
    if (gps.time.hour() < 10) Serial.print(F("0"));
    Serial.print(gps.time.hour());
    Serial.print(F(":"));
    if (gps.time.minute() < 10) Serial.print(F("0"));
    Serial.print(gps.time.minute());
    Serial.print(F(":"));
    if (gps.time.second() < 10) Serial.print(F("0"));
    Serial.print(gps.time.second());
    Serial.print(F("."));
    if (gps.time.centisecond() < 10) Serial.print(F("0"));
    Serial.print(gps.time.centisecond());
  }
  else
  {
    Serial.print(F("INVALID"));
  }

  // แสดงจำนวนดาวเทียม
  Serial.print(F("  Satellites: "));
  if (gps.satellites.isValid()) {
    Serial.print(gps.satellites.value());
  } else {
    Serial.print(F("INVALID"));
  }

  // แสดงความสูง
  Serial.print(F("  Altitude: "));
  if (gps.altitude.isValid()) {
    Serial.print(gps.altitude.meters());
    Serial.print(F("m"));
  } else {
    Serial.print(F("INVALID"));
  }

  // แสดงความเร็ว
  Serial.print(F("  Speed: "));
  if (gps.speed.isValid()) {
    Serial.print(gps.speed.kmph());
    Serial.print(F("km/h"));
  } else {
    Serial.print(F("INVALID"));
  }

  Serial.println();
}

ผลการทดสอบ







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

บมจ. ธนาคารกสิกรไทย สาขาโรบินสัน ศรีสมาน ออมทรัพย์
พร้อมเพย์ สาขา- 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 เลื่อนขึ้นบนสุด
พูดคุย-สอบถาม