





Датчик расхода воды латунный резьба G1/2
Арт. 12853
1,090 ₽
менее 50 шт.
Описание
Датчик потока воды на основе датчика Холла.
Характеристики:
- Материал: пластик, латунь.
- Резьба: G1/2
- Напряжение питания: 4.5...24 вольт постоянного тока
- Потребляемая сила тока: 15 мA (при напряжении 5 вольт)
- Напряжение на выходе: 5...18 вольт
- Нагрузка на выходе: ≤10 мA (при напряжении 5 вольт)
- Выходной сигнал: импульсы, 450 импульсов на 1 литр жидкости
- Пропускная способность: 1-30 л/мин.
- Максимальное давление жидкости: 1,75 МПА
- Температура измеряемой жидкости: не более 100°С
- Рабочая влажность воздуха: 35...90% RH
- Температура хранения: -25...100°С
- Влажность воздуха при хранении: 25...95%RH
Расположение выводов:
- красный: положительный полюс питания
- черный: отрицательный полюс питания
- желтый: выход сигнала
Пример программы для ArduinoIDE:
volatile int NbTopsFan; //measuring the rising edges of the signal
int Calc;
int hallsensor = 2; //The pin location of the sensor
void rpm () //This is the function that the interupt calls
{
NbTopsFan++; //This function measures the rising and falling edge of the hall effect sensors signal
}
// The setup() method runs once, when the sketch starts
void setup()
{
pinMode(hallsensor, INPUT); //initializes digital pin 2 as an input
Serial.begin(9600); //This is the setup function where the serial port is initialised,
attachInterrupt(0, rpm, RISING); //and the interrupt is attached
}
// the loop() method runs over and over again,
// as long as the Arduino has power
void loop ()
{
NbTopsFan = 0; //Set NbTops to 0 ready for calculations
sei(); //Enables interrupts
delay (1000); //Wait 1 second
cli(); //Disable interrupts
Calc = (NbTopsFan * 60 / 7.5); //(Pulse frequency x 60) / 7.5Q, = flow rate in L/hour
Serial.print (Calc, DEC); //Prints the number calculated above
Serial.print (" L/hour\r\n"); //Prints "L/hour" and returns a new line
}