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



SGM58031 ADC 16bit 4channel I2C with PGA high precision module development board data acquisition converter for Arduino

SGM58031 ADC 16bit 4channel I2C with PGA high precision module development board data acquisition converter for Arduino
SGM58031 ADC 16bit 4channel I2C with PGA high precision module development board data acquisition converter for ArduinoSGM58031 ADC 16bit 4channel I2C with PGA high precision module development board data acquisition converter for ArduinoSGM58031 ADC 16bit 4channel I2C with PGA high precision module development board data acquisition converter for ArduinoSGM58031 ADC 16bit 4channel I2C with PGA high precision module development board data acquisition converter for ArduinoSGM58031 ADC 16bit 4channel I2C with PGA high precision module development board data acquisition converter for ArduinoSGM58031 ADC 16bit 4channel I2C with PGA high precision module development board data acquisition converter for ArduinoSGM58031 ADC 16bit 4channel I2C with PGA high precision module development board data acquisition converter for Arduino
รหัสสินค้า SKU-02473
หมวดหมู่ โมดูลแปลงสัญญาณ (signal conversion)
ราคา 150.00 บาท
สถานะสินค้า พร้อมส่ง
ลงสินค้า 10 ก.ย. 2566
อัพเดทล่าสุด 13 ต.ค. 2567
จำนวน
ชิ้น
หยิบลงตะกร้า
บัตรประชาชน
บุ๊คแบ๊งค์
คุ้มครองโดย LnwPay
  • จำนวนและราคาสินค้าที่มีอยู่จริงจะตรงกับในเว็บ
  • ถ้ากดใส่ตระกร้าได้แสดงว่ามีสินค้าพร้อมส่ง หากจำนวนไม่พอจะมีข้อความแจ้งจำนวนคงเหลือให้ทราบ
  • การรับ/ส่งสินค้ามี 3 รูปแบบคือ ส่งพัสดุ / มารับเองที่ร้าน / บริการแอปขนส่งเช่น Grab, LALAMOVE, ฺBolt, อื่นๆ
Documentation
Datasheet SGM58031.pdf
   
Library 1.0.0 (latest)





Features:

1.SGM58031 is a 4-channel adapter board, very suitable for use in high-resolution analog-to-digital conversion microprocessors
2.Its working voltage is between 2V and 5V, so it is suitable for all ordinary 3.3V and 5V processors
3.This 4-channel adapter board controls two identical I2C buses, and the ZUI can provide up to 16 single ended or 8 differential channels
4.Programmable gain amplifier provides up to × 16 gain, SGM58031 has high resolution
5.The chip is small, so it keeps AVDD and AGND quiet with ferrite on a breakthrough board. The interface is completed through l2C, and the address can be changed to one of four options, so you can connect up to 4 SGM58031 on a 2-wire l2C bus for 16 single ended inputs

Parameters:
Resolution: 16 bits
Wide power range: 2.0V to 5.5V
Low current consumption:
1. Continuous mode: only 150uA
2. Single mode: automatic shutdown
Programmable data rate: 8SPS to 860SPS
Internal low drift reference voltage source
Internal oscillator
Internal PGA
I2C interface: pin selectable address
Four single ended or two differential inputs
Programmable comparator
This board/chip uses addresses ranging from 0X48 to OX4B between l2C 7 bits, which can be selected through jumpers
Size: approximately 28mm * 12mm

Package include:
1X module
1X needle arrangement







โคดตัวอย่าง 1

#include <Wire.h>

// กำหนดค่าต่างๆ

const int SGM58031_ADDRESS = 0x48; // ที่อยู่ I2C ของ SGM58031

const byte CONFIG_REGISTER = 0x01; // รีจิสเตอร์สำหรับตั้งค่า

void setup() {

  Serial.begin(9600);

  Wire.begin();

  // ตั้งค่า SGM58031 (ปรับค่าตาม Datasheet)

  Wire.beginTransmission(SGM58031_ADDRESS);

  Wire.write(CONFIG_REGISTER);

  Wire.write(0x00);

  Wire.endTransmission();

}

void loop() {

  // อ่านค่าจาก SGM58031

  Wire.requestFrom(SGM58031_ADDRESS, 2); // อ่าน 2 ไบต์ (16 บิต)

  uint16_t value = Wire.read() << 8 | Wire.read();

  // แปลงค่าเป็นแรงดันไฟฟ้า (ปรับค่าตาม Datasheet)

  float voltage = value * (5.0 / 65535.0);

  Serial.print("ค่าที่อ่านได้: ");

  Serial.print(value);

  Serial.print("  แรงดันไฟฟ้า: ");

  Serial.print(voltage);

  Serial.println(" V");

  delay(100);

}

โคดตัวอย่าง 2

#include <Wire.h>

const int SGM58031_ADDR = 0x48;  // I2C address of SGM58031 (default)

void setup() {

  Wire.begin();

  Serial.begin(9600);

 

  // Initialize SGM58031

  Wire.beginTransmission(SGM58031_ADDR);

  Wire.write(0x01);  // Point to configuration register

  Wire.write(0x84);  // Set to continuous conversion mode, data rate to 128 SPS

  Wire.endTransmission();

}

void loop() {

  int16_t adc_value;

 

  // Request 2 bytes from SGM58031

  Wire.requestFrom(SGM58031_ADDR, 2);

 

  if (Wire.available() == 2) {

    adc_value = Wire.read() << 8 | Wire.read();

   

    // Convert to voltage (assuming VREF = 3.3V)

    float voltage = adc_value * (3.3 / 32768.0);

   

    Serial.print("ADC Value: ");

    Serial.print(adc_value);

    Serial.print(", Voltage: ");

    Serial.print(voltage, 4);

    Serial.println(" V");

  }

 

  delay(1000);  // Wait for 1 second before next reading

}
 

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

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

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

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

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


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

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

Categories

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

Statistic

หน้าที่เข้าชม554,627 ครั้ง
ผู้ชมทั้งหมด312,270 ครั้ง
ร้านค้าอัพเดท6 ก.ย. 2568

Member

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

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

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