Arduino PH Meter Board (PH Sensor) ราคาถูก

Arduino PH Meter Board (PH Sensor) ราคาถูก
รหัสสินค้า C18002
หมวดหมู่ ความชื้นในดิน / น้ำฝน / ระดับน้ำ / คุณภาพน้ำ
ราคา 1,100.00 บาท
ขนาด 2
ลงสินค้า 20 พ.ค. 2562
อัพเดทล่าสุด 16 ก.ย. 2568
ความพึงพอใจ ยังไม่มีความคิดเห็น
คงเหลือ 0 ชิ้น
ขออภัย สินค้าหมด
บัตรประชาชน
บุ๊คแบ๊งค์
คุ้มครองโดย LnwPay

Arduino PH Meter Board (PH Sensor) ราคาถูก

Sensor สำหรับวัดค่าความเป็น กรด เบส ของสารละลาย (วัดค่า PH) สามารถนำไปใช้วัดคุณภาพน้ำ สำหรับ Sensor รุ่นนี้เป็นรุ่นราคาถูก ที่ตัด Sensor วัดอุณหภูมิให้มีราคาถูกลง กว่า สินค้า Arduino PH Meter Board (PH Sensor) รุ่นแรก แต่ความสามารถไม่ต่างกันมากสามารถใช้ได้เหมือนกัน เหมาะสำหรับน้องๆที่ต้องการนำไปวัดค่าความเป็นกรด ด่างในการปลูกต้นไม้ ไฮโดรโปนิกส์ หรือผักไร้ดิน การวัดคุณภาพของน้ำ โดยช่วงการวัดค่า ph จะสามารถวัดได้อยู่ในช่วง 0-14 ph โดยค่าที่ได้จะเป็นค่า Analog (0-1023) ส่งไปยัง Arduino เพื่อให้ Arduino ประมวลผลต่อไป

ข้อมูลเพิ่มเติม

  • รองรับแรงดัน DC 5 Volt
  • สามารถวัดค่า PH ความเป็นกรด เป็นด่าง ในช่วง 0 ถึง 14 pH
  • ค่าความผิดพลาด ± 0.1pH 

ในชุดประกอบด้วย

  • หัววัด pH Sensor
  • Board pH Sensor เพื่อแปลงค่าส่งไปยัง Arduino


ตัวอย่าง Code PH Sensor Arduino

/*

  # This sample code is used to test the pH meter V1.0.

  # Editor : YouYou

  # Ver  : 1.0

  # Product: analog pH meter

  # SKU  : SEN0161

*/

#define SensorPin A0 //pH meter Analog output to Arduino Analog Input 0

#define Offset 0.00 //deviation compensate

#define LED 13

#define samplingInterval 20

#define printInterval 800

#define ArrayLenth 40 //times of collection

int pHArray[ArrayLenth]; //Store the average value of the sensor feedback

int pHArrayIndex = 0;

void setup(void)

{

  pinMode(LED, OUTPUT);

  Serial.begin(9600);

  Serial.println("pH meter experiment!"); //Test the serial monitor

}

void loop(void)

{

  static unsigned long samplingTime = millis();

  static unsigned long printTime = millis();

  static float pHValue, voltage;

  if (millis() - samplingTime > samplingInterval)

  {

    pHArray[pHArrayIndex++] = analogRead(SensorPin);

    if (pHArrayIndex == ArrayLenth)pHArrayIndex = 0;

    voltage = avergearray(pHArray, ArrayLenth) * 5.0 / 1024;

    pHValue = 3.5 * voltage + Offset;

    samplingTime = millis();

  }

  if (millis() - printTime > printInterval) //Every 800 milliseconds, print a numerical, convert the state of the LED indicator

  {

    Serial.print("Voltage:");

    Serial.print(voltage, 2);

    Serial.print(" pH value: ");

    Serial.println(pHValue, 2);

    digitalWrite(LED, digitalRead(LED) ^ 1);

    printTime = millis();

  }

}

double avergearray(int* arr, int number) {

  int i;

  int max, min;

  double avg;

  long amount = 0;

  if (number <= 0) {

    Serial.println("Error number for the array to avraging!/n");

    return 0;

  }

  if (number < 5) { //less than 5, calculated directly statistics

    for (i = 0; i < number; i++) {

      amount += arr[i];

    }

    avg = amount / number;

    return avg;

  } else {

    if (arr[0] < arr[1]) {

      min = arr[0]; max = arr[1];

    }

    else {

      min = arr[1]; max = arr[0];

    }

    for (i = 2; i < number; i++) {

      if (arr[i] < min) {

        amount += min; //arrmax){

        amount += max; //arr>max

        max = arr[i];

      } else {

        amount += arr[i]; //min<=arr<=max

      }

    }//if

  }//for

  avg = (double)amount / (number - 2);

}//if

return avg;

}


Arduino PH Meter Board (PH Sensor) ราคาถูก


ซื้อ Arduino ออกใบเสร็จเบิกมหาลัย

Arduino ถูกค่า ส่งฟรี

ตัวอย่าง โปรเจค Arduino  Arduino ถูกค่า ส่งฟรี

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

ธนาคารไทยพาณิชย์ จำกัด (มหาชน) สาขาบิกซี เอ็กซ์ตร้า หาดใหญ่ ออมทรัพย์
Scan this!
ABMaker
014-xxxxxx-9
Accept All Banks | รับเงินได้จากทุกธนาคาร
สอบถามตัววัด ph หน่อยคับ
อยากทราบว่า ตัวนี้สามารถอ่านค่าได้จากที่ไหนคับ สามารถเชื่อมต่อผ่านไวไฟได้เลยหรือป่าวคับ
pram
pram
171.97.113.x
7 ส.ค. 2562 09:45 น.
การอ่านค่าที่ได้จะเป็นค่า analog เพื่อป้อนไปยัง Arduino Nodemcu esp8266 esp32

ทางร้านจะมีผงกรดและเบสนำมาผสมน้ำสำหรับคาริเบสให้ลูกค้าด้วย

ส่วนการต่อผ่าน Wifi สามารถนำอุปกรณ์ พวก Nodemcu esp8266 แล้วเชื่อมต่อดูผ่าน App ผ่าน wifi ด้วยครับ

หากต้องการข้อมูลเพิ่มเติม ติดต่อมาทาง ร้านโดยตรง เพื่อรับคำแนะนำได้ดีกว่า ครับ

https://www.ab.in.th/contactus
เจ้าของร้าน
เจ้าของร้าน
7 ส.ค. 2562 10:38 น.
สินค้านี้ยังไม่มีคนรีวิว

Join เป็นสมาชิกร้านค้า

ร้านAB-Maker บทความ Arduino จำหน่าย Sensor Module Shield ราคาถูก AB.in.th
ร้านAB-Maker บทความ Arduino จำหน่าย Sensor Module Shield ราคาถูก AB.in.th
/www.ab.in.th/
Join เป็นสมาชิกร้าน
530
สมัครสมาชิกร้านนี้ เพื่อรับสิทธิพิเศษ

ติดต่อร้าน AB-Maker

075-808-080
064-208-3926

ติดต่อเวลา 10.00-17.00 น. 
จันทร์ ถึงวัน ศุกร์ 

Fanpage AB-Maker Arduino Line @AB-Maker Arduino

QR Coard Line

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

หน้าที่เข้าชม4,526,559 ครั้ง
ผู้ชมทั้งหมด2,482,331 ครั้ง
ร้านค้าอัพเดท3 ต.ค. 2568
รายการสั่งซื้อของฉัน
เข้าสู่ระบบด้วย
เข้าสู่ระบบ
สมัครสมาชิก

ยังไม่มีบัญชีเทพ สร้างบัญชีใหม่ ไม่มีค่าใช้จ่าย
สมัครสมาชิก (ฟรี)
รายการสั่งซื้อของฉัน
ข้อมูลร้านค้านี้
ร้านAB-Maker บทความ Arduino จำหน่าย Sensor Module Shield ราคาถูก AB.in.th
AB-Maker บทความ Arduino จำหน่าย Sensor Module Shield ราคาถูก AB.in.th
Arduino นครศรีธรรมราช หาดใหญ่ สงขลา ยะลา จำหน่าย Arduino อุปกรณ์อิเล็กทรอนิกส์ ไมโครคอนโทรลเลอร์ Uno R3 Nodemcu Esp8266 Esp32 Sensor Module ราคาถูกสุดๆ Support เร็วดูแลลูกค้าอย่างดี
เบอร์โทร : 0642083926
อีเมล : [email protected]
ส่งข้อความติดต่อร้าน
เกี่ยวกับร้านค้านี้
สินค้าที่ดูล่าสุด
ดูสินค้าทั้งหมดในร้าน
สินค้าที่ดูล่าสุด
บันทึกเป็นร้านโปรด
Join เป็นสมาชิกร้าน
แชร์หน้านี้
แชร์หน้านี้

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