จำนวนชิ้น | ส่วนลดต่อชิ้น | ราคาสุทธิต่อชิ้น |
{{(typeof focus_pdata.price_list[idx+1] == 'undefined')?('≥ '+price_row.min_quantity):((price_row.min_quantity < (focus_pdata.price_list[idx+1].min_quantity - 1))?(price_row.min_quantity+' - '+(focus_pdata.price_list[idx+1].min_quantity - 1)):price_row.min_quantity)}} | {{number_format(((focus_pdata.price_old === null)?focus_pdata.price:focus_pdata.price_old) - price_row.price,2)}} บาท | {{number_format(price_row.price,2)}} บาท |
คงเหลือ | ชิ้น |
จำนวน (ชิ้น) |
- +
|
ซื้อเลย หยิบลงตะกร้า ซื้อเลย หยิบลงตะกร้า คุณมีสินค้าชิ้นนี้ในตะกร้า 0 ชิ้น
|
|
|
|
คุยกับร้านค้า | |
{{ size_chart_name }} |
|
หมวดหมู่ | Sensor |
สภาพ | สินค้าใหม่ |
เพิ่มเติม | |
สภาพ | สินค้ามือสอง |
เกรด | |
สถานะสินค้า | |
ระยะเวลาจัดเตรียมสินค้า | |
เข้าร่วมโปรโมชั่น | |
ข้อมูล |
น้ำหนัก
บาร์โค้ด
ลงสินค้า
อัพเดทล่าสุด
|
รายละเอียดสินค้า |
ผู้ผลิตระบุว่าเป็น Chip เก่า น่าจะเป็น UBlox รุ่น 6 เก่าปัจจุบันรุ่น 8 Chip Ublox อาจมีตำหนิดูเก่า แต่ก็ใช้งานได้
ราคาถูกสุดและใช้งานได้ดี มีความไวในการรับสัญญาณสูงและสายอากาศมีขนาดเล็กกระทัดรัด ท้องฟ้าโปร่งใช้เวลาจับสัญญาณประมาณ 2-5 นาที กรณีที่เคลื่อนย้ายออกจากจุดเดิมมากๆ จะใช้เวลาครั้งแรกนานขึ้น ดูตัวอย่างการใช้่งาน คลิก มี Sketch 3 ตัวอย่าง ให้ทดลองใช้ ดังนี้ 1) ใช้กับ Library TinyGPS จาก https://github.com/mikalhart/TinyGPS
#include "TinyGPS++.h" #include "SoftwareSerial.h" SoftwareSerial serial_connection(10, 11); //RX=pin 10, TX=pin 11 TinyGPSPlus gps;//This is the GPS object that will pretty much do all the grunt work with the NMEA data void setup() { Serial.begin(9600);//This opens up communications to the Serial monitor in the Arduino IDE serial_connection.begin(9600);//This opens up communications to the GPS Serial.println("GPS Start");//Just show to the monitor that the sketch has started } void loop() { while(serial_connection.available())//While there are characters to come from the GPS { gps.encode(serial_connection.read());//This feeds the serial NMEA data into the library one char at a time } if(gps.location.isUpdated())//This will pretty much be fired all the time anyway but will at least reduce it to only after a package of NMEA data comes in { //Get the latest info from the gps object which it derived from the data sent by the GPS unit Serial.println("Satellite Count:"); Serial.println(gps.satellites.value()); Serial.println("Latitude:"); Serial.println(gps.location.lat(), 6); Serial.println("Longitude:"); Serial.println(gps.location.lng(), 6); Serial.println("Speed MPH:"); Serial.println(gps.speed.mph()); Serial.println("Altitude Feet:"); Serial.println(gps.altitude.feet()); Serial.println(""); } } 3) หรือ Github #include "TinyGPS++.h" #include "SoftwareSerial.h" SoftwareSerial serial_connection(10, 11); //RX=pin 10, TX=pin 11 TinyGPSPlus gps;//This is the GPS object that will pretty much do all the grunt work with the NMEA data void setup() { Serial.begin(9600);//This opens up communications to the Serial monitor in the Arduino IDE serial_connection.begin(9600);//This opens up communications to the GPS Serial.println("GPS Start");//Just show to the monitor that the sketch has started } void loop() { while(serial_connection.available())//While there are characters to come from the GPS { gps.encode(serial_connection.read());//This feeds the serial NMEA data into the library one char at a time } if(gps.location.isUpdated())//This will pretty much be fired all the time anyway but will at least reduce it to only after a package of NMEA data comes in { //Get the latest info from the gps object which it derived from the data sent by the GPS unit Serial.println("Satellite Count:"); Serial.println(gps.satellites.value()); Serial.println("Latitude:"); Serial.println(gps.location.lat(), 6); Serial.println("Longitude:"); Serial.println(gps.location.lng(), 6); Serial.println("Speed MPH:"); Serial.println(gps.speed.mph()); Serial.println("Altitude Feet:"); Serial.println(gps.altitude.feet()); Serial.println(""); } } ![]() |
เงื่อนไขอื่นๆ |
|
Tags |