ข้อมูล
น้ำหนัก
บาร์โค้ด
ลงสินค้า
อัพเดทล่าสุด
รายละเอียดสินค้า



Specifications:

  • Voltage: 2.8 – 5.0V (absolute maximum 5.5V) for 1.1V version
  • Voltage: 3.1 – 5.0V (absolute maximum 5.5V) for 3V version
  • Output: 0 – 1.1V (approximately) - 1.1V version
  • Output: 0 - 3.0V (approximately) - 3V version มีจำหน่ายเฉพาะ3โวลต์
  • Max Current: ~24mA
  • Temperature drift: Usually less than 5mV
  • Operating temperature: 2 – 45 degree C
  • Dimensions: 170x25x15mm
  • Weight: 52g
  • Cable: 1.5m

Connections:

  • Brown – VCC (+)
  • Green – VDD (-)
  • White – Output

Arduino Example:

/*
SoilWatch 10 soil moisture sensor example

Reads analog value of soil moisture sensor and displays it
on the serial port.

The circuit:
* Sensor output (white wire) connect to Analog A0 on Arduino.
Connect VCC (brown wire) to 3.3V or 5V on Arduino (3.3V gives more stable readings)
Connect GND (green wire) to GND on Arduino.

created 30 Aug. 2017
last updated 9 Feb 2018
by Piotr Trembecki
https://pino-tech.eu/sw10

This example code is in the public domain.

*/

/*
******** SETUP ********

For 1.1V version set is1V1Output to true. The usual maxADC value will be around 1000.
For 3V version set is1V1Output to false. The usual maxADC value will be around 600.

***********************
*/
const int analogInPin = A0; // Analog input pin that the sensor output is attached to (white wire)
int minADC = 0; // replace with min ADC value read in air
int maxADC = 600; // replace with max ADC value read fully submerged in water
bool is1V1Output = false; // set true if 1.1V output sensor is used for 3V set to false


int moistureValue, mappedValue;

void setup() {
// initialize serial communications at 9600 bps:
Serial.begin(9600);

if(is1V1Output == true)
analogReference(INTERNAL); //set ADC reference to internal 1.1V
}

void loop() {
// read the moisture value:
moistureValue = analogRead(analogInPin);

// print ADC results to the serial monitor:
Serial.print("ADC = " );
Serial.print(moistureValue);
Serial.print(", " );

mappedValue = map(moistureValue,minADC,maxADC, 0, 100);

// print mapped results to the serial monitor:
Serial.print("Moisture value = " );
Serial.println(mappedValue);

// wait 500 milliseconds before the next loop
delay(500);
}
เงื่อนไขอื่นๆ
Tags

วิธีการสั่งซื้อสินค้า

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

ธนาคารกรุงเทพ จำกัด (มหาชน) สาขาสุขาภิบาล3 สะสมทรัพย์
ธนาคารไทยพาณิชย์ จำกัด (มหาชน) สาขาสุขาภิบาล3 ออมทรัพย์
บมจ. ธนาคารกรุงไทย สาขาเดอะมอลล์บางกะปิ2 ออมทรัพย์

นโยบายการเปลี่ยนหรือคืนสินค้า

การเปลี่ยนสินค้า กรณีที่สินค้าที่ได้ซื้อ มีปัญหาจากตัวสินค้าชำรุดเสียหายเนื่องจากการผลิต สามารถเปลี่ยนสินค้าใหม่ได้ ภายใน 7 วัน นับจากวันที่ซื้อสินค้า หากพ้นกำหนดนี้ บริษัทฯ จะรับเคลมสินค้าตามขั้นตอนปกติ งดคืนสินค้าทุกกรณี
รายการสั่งซื้อของฉัน
รายการสั่งซื้อของฉัน
ข้อมูลร้านค้านี้
ร้านสมาร์ทฟาร์มดีไอวาย
สมาร์ทฟาร์มดีไอวาย
บริษัท สมาร์ทเอไอโซลูชั่น จำกัด รับก่อสร้างฟาร์ม โรงเรือนระบบปิด ระบบเปิด ขนาดเล็ก กลาง ใหญ่ plant factory โรงเรือนอัจฉริยะ ฟาร์มระบบอัตโนมัติและรับติดตั้งระบบควบคุมสมองกลอิเล็กทรอนิกส์ ทั้ง Industrial และ Non Industrial, Smart Farm ฟาร์มพืช ฟาร์มสัตว์ สำหรับเกษตรยุคใหม่ นอกจากนี้ยังจำหน่ายอุปกรณ์ ให้คำปรึกษา ออกแบบ แผนผังระบบฟาร์ม โรงเรือน งานจัดสวน งานออกโชว์ งานโมเดล ต่างๆ ที่เกี่ยวข้อง และจำหน่ายอุปกรณ์สินค้าทางการเกษตร อุปกรณ์เทคโนโลยีในงานเกษตร ต่างๆ สมาร์ทฟาร์มดีไอวาย เลขที่ประจำตัวผู้เสียภาษี : 0105560177872 LINE ID: @smartfarmdiy LINE ID: @smartfarmin
เบอร์โทร : 020779707
อีเมล : contact@smartfarmdiy.com
ส่งข้อความติดต่อร้าน
เกี่ยวกับร้านค้านี้
สินค้าที่ดูล่าสุด
ดูสินค้าทั้งหมดในร้าน
สินค้าที่ดูล่าสุด
บันทึกเป็นร้านโปรด
Join เป็นสมาชิกร้าน
แชร์หน้านี้
แชร์หน้านี้

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