จำนวนชิ้น | ส่วนลดต่อชิ้น | ราคาสุทธิต่อชิ้น |
{{(typeof focus_pdata.price_list[idx+1] == 'undefined')?('≥ '+price_row.min_quantity):((price_row.min_quantity < (focus_pdata.price_list[idx+1].min_quantity - 1))?(price_row.min_quantity+' - '+(focus_pdata.price_list[idx+1].min_quantity - 1)):price_row.min_quantity)}} | {{number_format(((focus_pdata.price_old === null)?focus_pdata.price:focus_pdata.price_old) - price_row.price,2)}} บาท | {{number_format(price_row.price,2)}} บาท |
คงเหลือ | ชิ้น |
จำนวน (ชิ้น) |
- +
|
ซื้อเลย หยิบลงตะกร้า ซื้อเลย หยิบลงตะกร้า คุณมีสินค้าชิ้นนี้ในตะกร้า 0 ชิ้น
|
|
|
|
คุยกับร้านค้า | |
{{ size_chart_name }} |
|
หมวดหมู่ | Sensor เซนเซอร์วัดค่าต่างๆ |
สภาพ | สินค้าใหม่ |
เพิ่มเติม | |
สภาพ | สินค้ามือสอง |
เกรด | |
สถานะสินค้า | |
ระยะเวลาจัดเตรียมสินค้า | |
เข้าร่วมโปรโมชั่น | |
ข้อมูล |
น้ำหนัก
บาร์โค้ด
ลงสินค้า
อัพเดทล่าสุด
|
รายละเอียดสินค้า |
Connections:
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 |