SKU:U130
















Unit Tube Pressure は 正負圧力計 で、**-100 ~ 200Kpa** の広い測定範囲をサポートします。使用時にはチューブで接続し、もう一方を気体測定環境に接続します。センサーは -100 ~ 200Kpa の範囲を比例的にマッピングし、0.1 ~ 3.1V の電圧を出力します。全体を覆う保護ケースを備え、センサーの動作安定性を効果的に確保します。産業機器の気体圧力検出などのシーンに非常に適しています。
| 仕様 | パラメータ |
|---|---|
| センサー型番 | MCP-H10-B200KPPN |
| 測定媒体 | 気体 |
| 正負レンジ | -100 ~ 200Kpa |
| 比例出力 | 0.1 ~ 3.1V |
| 精度 | ±1.5Kpa (0 ~ 85°C) |
| 動作電圧 | 5V |
| 製品サイズ | 32.0 x 24.0 x 12.5mm |
| 製品重量 | 4.6g |
| 梱包サイズ | 138.0 x 93.0 x 13.5mm |
| 梱包重量 | 10.0g |
float K = 100.0;
float B = 110.0;
float P = analogVolts * K - B;
| HY2.0-4P | Black | Red | Yellow | White |
|---|---|---|---|---|
| PORT.B | GND | 5V | NC | Analog Output |
#include <Arduino.h>
int sensorPin = 36;
void setup()
{
Serial.begin(115200);
pinMode(sensorPin, INPUT);
analogReadResolution(12);
analogSetAttenuation(ADC_11db);
}
void loop()
{
// アナログ値 / ミリボルト値を読み取る:
int analogValue = analogRead(sensorPin);
int analogVolts = analogReadMilliVolts(sensorPin);
// 読み取った値を出力:
Serial.printf("ADC analog value = %d\n", analogValue);
Serial.printf("ADC millivolts value = %d\n", analogVolts);
float K = 100.0;
float B = 110.0;
float P = analogVolts / 1000.0 * K - B;
Serial.printf("Pressure: %f.2 Kpa \n", P);
delay(100); // 読み取り間隔をあけることでシリアル出力を見やすくする
}