จำนวนชิ้น | ส่วนลดต่อชิ้น | ราคาสุทธิต่อชิ้น |
{{(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 }} |
|
หมวดหมู่ | วัดอุณหภูมิ / วัดความชื้น |
สภาพ | สินค้าใหม่ |
เพิ่มเติม | |
สภาพ | สินค้ามือสอง |
เกรด | |
สถานะสินค้า | |
ระยะเวลาจัดเตรียมสินค้า | |
เข้าร่วมโปรโมชั่น | |
ข้อมูล |
น้ำหนัก
บาร์โค้ด
ลงสินค้า
อัพเดทล่าสุด
|
รายละเอียดสินค้า |
หมายเหตุ : I2C address ของ BME280 จะมีสองรหัสคือ 0x76 0x77 ของตัวที่ร้านจะเป็น 0x76 ครับ หากต้องการเปลี่ยนเป็น 0x77 สามารถบัดกรี jumper บนตัวบอร์ด รายละเอียดดูได้จาก datasheet
รายละเอียดสินค้า
ME-BME280 is a Breakout Board featuring a Bosch Sensortec ME280 Temperature, Humidity & Pressure Sensor. BME280 Features-Package 2.5 mm x 2.5 mm x 0.93 mm metal lid LGA Bosch has stepped up their game with their new BMP280 sensor, an environmental sensor with temperature, barometric pressure that is the next generation upgrade to the BMP085 / BMP180 / BMP183. This sensor is great for all sorts of weather sensing and can even be used in both I2C and SPI! This precision sensor from Bosch is the best low-cost, precision sensing solution for measuring barometric pressure with ± 1 hPa absolute accuraccy, and temperature with ± 1.0 ° C accuracy. Because pressure changes with altitude, and the pressure measurements are so good, you can also use it as an altimeter with ± 1 meter accuracy The BME280 is the next-generation of sensors from Bosch, and is the upgrade to the BMP085 / BMP180 / BMP183-with a low altitude noise of 0.25m and the same fast conversion time. It has the same specifications, but can use either I2C or SPI. For simple easy wiring, go with I2C. If you want to connect a bunch of sensors without worrying about I2C address collisions, go with SPI.
#include <Arduino.h>
/*
Communicate with BME280s with different I2C addresses
Nathan Seidle @ SparkFun Electronics
March 23, 2015
Feel like supporting our work? Buy a board from SparkFun!
https://www.sparkfun.com/products/14348 - Qwiic Combo Board
https://www.sparkfun.com/products/13676 - BME280 Breakout Board
This example shows how to connect two sensors on the same I2C bus.
The BME280 has two I2C addresses: 0x77 (jumper open) or 0x76 (jumper closed)
Hardware connections:
BME280 -> Arduino
GND -> GND
3.3 -> 3.3
SDA -> A4
SCL -> A5
*/
#include <Wire.h>
#include "SparkFunBME280.h"
BME280 mySensorB; //Uses I2C address 0x76
void setup()
{
Serial.begin(115200);
Serial.println("Example showing alternate I2C addresses");
Wire.begin();
mySensorB.setI2CAddress(0x76); //Connect to a second sensor
if(mySensorB.beginI2C() == false) Serial.println("Sensor B connect failed");
}
void loop()
{
Serial.print(" HumidityB: ");
Serial.print(mySensorB.readFloatHumidity(), 0);
Serial.print(" PressureB: ");
Serial.print(mySensorB.readFloatPressure(), 0);
Serial.print(" TempB: ");
Serial.print(mySensorB.readTempC(), 2);
// Serial.print(mySensorB.readTempF(), 2);
Serial.println();
delay(50);
}
![]() ![]() ![]() ![]() |
เงื่อนไขอื่นๆ |
|
Tags |
หน้าที่เข้าชม | 2,072,402 ครั้ง |
ผู้ชมทั้งหมด | 1,333,128 ครั้ง |
ร้านค้าอัพเดท | 6 ก.ย. 2568 |