Модуль кислотно-основного датчика 1 модуль датчика V1.1 + 1 шт. Кислотно-щелочной разведки AVR
Модуль кислотно-основного датчика 1 модуль датчика V1.1 + 1 шт. Кислотно-щелочной разведки AVR
Модуль кислотно-основного датчика 1 модуль датчика V1.1 + 1 шт. Кислотно-щелочной разведки AVR
Модуль кислотно-основного датчика 1 модуль датчика V1.1 + 1 шт. Кислотно-щелочной разведки AVR

Модуль кислотно-основного датчика 1 модуль датчика V1.1 + 1 шт. Кислотно-щелочной разведки AVR

5.0
2 ta sotildi
Eng kam miqdor: 1 dona

dan boshlab

507 823 so'm

Kafolatlangan yetkazib berish muddati

Agar biz 45 kun kechiksak, buyurtmani bepul olasiz. Batafsil

Har doim siz bilan aloqada

Biz har kuni savollarga har qanday savollarga javob beramiz.

To'lovni qulay usulda xavfsiz qiling

Biz to'lovlarni turli xil usullarda qabul qilamiz.

Bo'lib to'lash mavjud

Uzum
maxsulotni tanlang
inTend
maxsulotni tanlang
Buyurtmani rasmiylashtirish paytida muddatli to‘lovni tanlang. Muddatli to‘lovning yakuniy qiymati rasmiylashtirishda hisoblanadi.
Модуль кислотно-основного датчика 1 модуль датчика V1.1 + 1 шт. Кислотно-щелочной разведки AVR

Mahsulot haqida

Xususiyatlar

Происхождение

Китай

Напряжение питания

Смотрите страницу деталей

Инкапсуляция

Датчик

Пункт Нет.

Смотрите страницу деталей

Тип

Другие ИС

Марка

BYS

Модель

BYS459-1500

Импорт или нет

Нет

Упаковка

Картонная упаковка

Диапазон измерения

Смотрите страницу деталей

Индивидуальная обработка

Нет

Номер заказа

Смотрите страницу деталей

Иметь авторизованные частные бренды

Да

Tavsif

 
Description:
  • Features: 



    Water quality testing
    Aquaculture

    Specification:
    Module Power : 5.00V
    Module Size : 43 x 32mm
    Measuring Range :0 - 14PH
    Measuring Temperature: 0 - 60 °C
    Accuracy : ± 0.1pH (25 °C)
    Response Time : ≤ 1min
    pH Sensor with BNC Connector
    pH2.0 Interface ( 3 foot patch )
    Gain Adjustment Potentiometer
    Power Indicator LED

    Arduino DEMO Code:

    /*
    # This sample codes is for testing the pH meter V1.0.
    # Editor : YouYou
    # Date : 2013.10.21
    # Ver : 0.1
    # Product: pH meter
    # SKU : SEN0161
    */

    #define SensorPin 0 //pH meter Analog output to Arduino Analog Input 0
    #define Offset 0.00 //deviation compensate
    unsigned long int avgValue; //Store the average value of the sensor feedback
    void setup()
    {
    pinMode(13,OUTPUT);
    Serial.begin(9600);
    Serial.println("Ready"); //Test the serial monitor
    }
    void loop()
    {
    int buf[10]; //buffer for read analog
    for(int i=0;i<10;i++) //Get 10 sample value from the sensor for smooth the value
    {
    buf[i]=analogRead(SensorPin);
    delay(10);
    }
    for(int i=0;i<9;i++) //sort the analog from small to large
    {
    for(int j=i+1;j<10;j++)
    {
    if(buf[i]>buf[j])
    {
    int temp=buf[i];
    buf[i]=buf[j];
    buf[j]=temp;
    }
    }
    }
    avgValue=0;
    for(int i=2;i<8;i++) //take the average value of 6 center sample
    avgValue+=buf[i];
    float phValue=(float)avgValue*5.0/1024/6; //convert the analog into millivolt
    phValue=3.5*phValue+Offset; //convert the millivolt into pH value
    Serial.print(" pH:");
    Serial.print(phValue,2);
    Serial.println(" ");
    digitalWrite(13, HIGH);
    delay(800);
    digitalWrite(13, LOW);
    }

     
  • Package Contents 

    Brand New

    1xAnalog PH Probe Sensor Shield and PH Probe Kit For Arduino Compatible
  • 352

    350

    351

Barcha xususiyatlar

Xususiyatlari

Происхождение

Китай

Напряжение питания

Смотрите страницу деталей

Инкапсуляция

Датчик

Пункт Нет.

Смотрите страницу деталей

Tavsif

 
Description:
  • Features: 



    Water quality testing
    Aquaculture

    Specification:
    Module Power : 5.00V
    Module Size : 43 x 32mm
    Measuring Range :0 - 14PH
    Measuring Temperature: 0 - 60 °C
    Accuracy : ± 0.1pH (25 °C)
    Response Time : ≤ 1min
    pH Sensor with BNC Connector
    pH2.0 Interface ( 3 foot patch )
    Gain Adjustment Potentiometer
    Power Indicator LED

    Arduino DEMO Code:

    /*
    # This sample codes is for testing the pH meter V1.0.
    # Editor : YouYou
    # Date : 2013.10.21
    # Ver : 0.1
    # Product: pH meter
    # SKU : SEN0161
    */

    #define SensorPin 0 //pH meter Analog output to Arduino Analog Input 0
    #define Offset 0.00 //deviation compensate
    unsigned long int avgValue; //Store the average value of the sensor feedback
    void setup()
    {
    pinMode(13,OUTPUT);
    Serial.begin(9600);
    Serial.println("Ready"); //Test the serial monitor
    }
    void loop()
    {
    int buf[10]; //buffer for read analog
    for(int i=0;i<10;i++) //Get 10 sample value from the sensor for smooth the value
    {
    buf[i]=analogRead(SensorPin);
    delay(10);
    }
    for(int i=0;i<9;i++) //sort the analog from small to large
    {
    for(int j=i+1;j<10;j++)
    {
    if(buf[i]>buf[j])
    {
    int temp=buf[i];
    buf[i]=buf[j];
    buf[j]=temp;
    }
    }
    }
    avgValue=0;
    for(int i=2;i<8;i++) //take the average value of 6 center sample
    avgValue+=buf[i];
    float phValue=(float)avgValue*5.0/1024/6; //convert the analog into millivolt
    phValue=3.5*phValue+Offset; //convert the millivolt into pH value
    Serial.print(" pH:");
    Serial.print(phValue,2);
    Serial.println(" ");
    digitalWrite(13, HIGH);
    delay(800);
    digitalWrite(13, LOW);
    }

     
  • Package Contents 

    Brand New

    1xAnalog PH Probe Sensor Shield and PH Probe Kit For Arduino Compatible
  • 352

    350

    351

Ushbu sotuvchidan

Barchasini ko'rish