- 아두이노 INA219 DC 고정밀 전류 센서 모듈

- INA219 칩 기반 전류·전압·전력 측정 모듈
- 0.1Ω 1% 정밀 션트 저항(2W) 내장 → ±3.2A 측정 가능
- 버스 전압 최대 26V까지 측정 가능
- I²C 인터페이스(SDA, SCL)로 마이크로컨트롤러와 통신 가능
- 최대 16개 모듈 주소 설정 가능 (A0, A1 점퍼 활용)
- 구동 전압: 3.0V ~ 5.5V
- 입력 전압(버스 전압): 0V ~ 26V
- 측정 전류 범위: 최대 ±3.2A (0.1Ω 션트 저항 기반)
- 통신 방식: I²C, 최대 3.4MHz (High-Speed Mode)
- ADC 해상도: 12-bit, 변환 시간/샘플링 조절 가능
- PGA 내장: ±40mV ~ ±320mV 측정 범위 선택
- I²C 주소 설정: A0, A1 핀 조합으로 16개까지 모듈 확장 가능
- 보드 크기: 약 25.6 × 20.4 mm
- 보드 크기: 약 25.6 × 20.4 × 3 mm


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | #include <Wire.h> #include <Adafruit_INA219.h> Adafruit_INA219 ina219; void setup(void) { Serial.begin(115200); while (!Serial) { // will pause Zero, Leonardo, etc until serial console opens delay(1); } Serial.println("Hello!"); // Initialize the INA219. // By default the initialization will use the largest range (32V, 2A). However // you can call a setCalibration function to change this range (see comments). if (! ina219.begin()) { Serial.println("Failed to find INA219 chip"); while (1) { delay(10); } } // To use a slightly lower 32V, 1A range (higher precision on amps): //ina219.setCalibration_32V_1A(); // Or to use a lower 16V, 400mA range (higher precision on volts and amps): //ina219.setCalibration_16V_400mA(); Serial.println("Measuring voltage and current with INA219 ..."); } void loop(void) { float shuntvoltage = 0; float busvoltage = 0; float current_mA = 0; float loadvoltage = 0; float power_mW = 0; shuntvoltage = ina219.getShuntVoltage_mV(); busvoltage = ina219.getBusVoltage_V(); current_mA = ina219.getCurrent_mA(); power_mW = ina219.getPower_mW(); loadvoltage = busvoltage + (shuntvoltage / 1000); Serial.print("Bus Voltage: "); Serial.print(busvoltage); Serial.println(" V"); Serial.print("Shunt Voltage: "); Serial.print(shuntvoltage); Serial.println(" mV"); Serial.print("Load Voltage: "); Serial.print(loadvoltage); Serial.println(" V"); Serial.print("Current: "); Serial.print(current_mA); Serial.println(" mA"); Serial.print("Power: "); Serial.print(power_mW); Serial.println(" mW"); Serial.println(""); delay(2000); } | cs |

- 아두이노 INA219 DC 고정밀 전류 센서 모듈 * 1pcs
| 품명/모델명 | 상세설명참조 / 상세설명참조 | ||
|---|---|---|---|
| 법에 의한 인증·허가 등을 받았음을 확인할 수 있는 경우 그에 대한 사항 | 상세설명참조 | ||
| 제조국 또는 원산지 | 상세설명참조 | ||
| 제조자/수입품여부/수입자 | 상세설명참조 / 상세설명참조 | ||
| A/S 책임자와 전화번호 또는 소비자상담 관련 전화번호 | 상세설명참조 | ||
상품이 장바구니에 담겼습니다.
바로 확인하시겠습니까?