สินค้าทั้งหมด (All products)

87 products

  • Last stock! โครงหุ่นยนต์ 2WD Smart Robot Car Chassis

    Global Pi Shop 2WD Smart Robot Car Chassis

    This is a low-cost mobile robot kit that comes with everything you need to build your first mobile robot except the electronic parts. It gives you the freedom to choose your preferred microcontroller whether it is Arduino, Micro:bit or any platform you like. It is particularly suitable for educators or training centers who wish to conduct a mobile robot workshop to students. Specification 2 wheels + motors mobile robot chasis Comes with all accessories to make a mobile robot Include 4xAA batteries holder Chassis size: ~215mm x ~150mm Wheel Diameter: 67mm Castor Height: 34mm Motor parameters: Comes presoldered with Red and Black wire, length ~ 15cm (After 15th September 2019) Bidirectional Gear Ratio = 48:1 Speed ​​with 66mm diameter wheel = 0.65 m/s at 7.2VDC Recommended operating voltage: 5 - 10VDC Noise level < 65dB Current Consumption: 100mA each motor at 3V 100mA each motor at 5V 120mA each motor at 6V Document: Assembly Instruction Packing List: 1 x Plexiglass panels 2 x DC gear motor(TT motor) + Mini Wheel 1 x Castor 1 x 4 X AA battery holder 1 x Rocker switch 2 x Black slotted disc Mounting screws and accessories

    190.00 ฿

  • บอร์ด 3-Axis Digital Compass Breakout สำหรับเข็มทิศดิจิทัล

    Global Pi Shop 3-Axis Digital Compass Breakout Board

    Specification Simple I2C interface 3.3V - 5.0VDC supply 3.3VDC logic level Low current draw 5 milli-gauss resolution Dimension: 15mm x 13mm

    100.00 ฿

  • Sale -52% โมดูล Active Buzzer Sensor สำหรับ Arduino

    Global Pi Shop Active Buzzer module sensor ใช้งานกับ Arduino raspberry pi esp32 esp8266 nodemcu

    Active Buzzer คืออะไร? วิธีสร้างเสียงแจ้งเตือนด้วย Arduino Active Buzzer (แอคทีฟบัซเซอร์) คือ อุปกรณ์กำเนิดเสียงประเภทหนึ่งที่ใช้งานง่ายมาก โดยจุดเด่นของมันคือมีวงจรสร้างความถี่เสียง (Oscillator) อยู่ภายในตัว ทำให้เราไม่ต้องเขียนโค้ดที่ซับซ้อนเพื่อสร้างความถี่เสียงเอง เพียงแค่จ่ายไฟเลี้ยง 3.3V-5V หรือส่งสัญญาณลอจิก "HIGH" จากไมโครคอนโทรลเลอร์เข้าไป Buzzer ก็จะส่งเสียง "ปี๊บ" แหลมๆ ออกมาได้ทันที ความแตกต่างระหว่าง Active vs Passive Buzzer Active Buzzer (ตัวนี้): มีวงจรสร้างเสียงในตัว แค่จ่ายไฟก็ดังทันที เหมาะกับเสียงเตือนง่ายๆ ที่มีความถี่เดียว Passive Buzzer: ไม่มีวงจรในตัว เป็นแค่ตัวกำเนิดเสียงเปล่าๆ ผู้ใช้ต้องเขียนโค้ดสร้างสัญญาณความถี่ (PWM) จาก Arduino เพื่อป้อนให้มันถึงจะมีเสียง เหมาะกับการสร้างเสียงที่มีหลายระดับโน้ตดนตรี สเปคของ Active Buzzer Module รายการ รายละเอียด แรงดันใช้งาน 3.3V – 5V (เหมาะกับ Arduino โดยตรง) กระแสใช้งาน ประมาณ 20 mA ประเภท Active Buzzer (มีวงจรสร้างเสียงในตัว) ความถี่เสียง ~2 – 3 kHz (เสียงแหลมมาตรฐาน) ระดับเสียง ประมาณ 85 dB @ 10 ซม. รูปแบบขา แบบโมดูล 3 ขา (VCC, GND, I/O) สถานะเสียง ส่งเสียงเมื่อขาอินพุตเป็น HIGH (หรือ LOW ขึ้นอยู่กับรุ่น) การใช้งานกับ Arduino ✅ การต่อสาย (โมดูล A322) VCC (หรือ +) → ต่อกับขา 5V บนบอร์ด Arduino GND (หรือ -) → ต่อกับขา GND บนบอร์ด Arduino I/O (หรือ S) → ต่อกับขาดิจิทัล (Digital Pin) ขาใดก็ได้ เช่น D8 ✅ ตัวอย่างโค้ดใช้งานง่าย โค้ดนี้จะสั่งให้ Buzzer ส่งเสียงดัง 1 วินาที และเงียบ 1 วินาที สลับกันไป // กำหนดขาที่ต่อกับ I/O ของ Buzzer int buzzerPin = 8; void setup() { // ตั้งค่าให้ buzzerPin เป็น OUTPUT pinMode(buzzerPin, OUTPUT); } void loop() { // สั่งเปิดเสียง Buzzer digitalWrite(buzzerPin, HIGH); delay(1000); // เปิดเสียงค้างไว้ 1 วินาที // สั่งปิดเสียง Buzzer digitalWrite(buzzerPin, LOW); delay(1000); // หยุดพัก 1 วินาที } ไอเดียการประยุกต์ใช้งาน โปรเจกต์ รายละเอียดการใช้งาน ระบบแจ้งเตือนภัย ใช้เป็นเสียง Alarm เมื่อเซนเซอร์ควัน, แก๊ส, หรือความร้อนตรวจพบค่่าผิดปกติ เครื่องจับความเคลื่อนไหว ส่งเสียงเตือนเมื่อเซนเซอร์ PIR (Passive Infrared) ตรวจจับการเคลื่อนไหวได้ ระบบเตือนระดับน้ำ ส่งเสียงดังเมื่อเซนเซอร์วัดระดับน้ำตรวจพบว่าน้ำสูงถึงจุดที่กำหนด นาฬิกาปลุก DIY ใช้เป็นตัวกำเนิดเสียงสำหรับปลุกตามเวลาที่ตั้งไว้ เสียงแจ้งสถานะ ใช้ส่งเสียง "ปี๊บ"สั้นๆ เพื่อยืนยันการทำงาน เช่น กดรหัสผ่านถูก, สแกนบัตรสำเร็จ ข้อดีของ Active Buzzer ใช้งานง่ายที่สุด: แค่จ่ายไฟหรือส่งสัญญาณ HIGH ก็มีเสียงดังทันที โค้ดไม่ซับซ้อน: ไม่จำเป็นต้องใช้คำสั่งสร้างความถี่ (PWM) ที่ยุ่งยาก ราคาถูก: เป็นวิธีเพิ่มเสียงแจ้งเตือนให้โปรเจกต์ที่ประหยัดที่สุด อเนกประสงค์: เหมาะกับงานแจ้งเตือนทุกรูปแบบที่ต้องการเสียงความถี่เดียว

    25.00 ฿ 12.00 ฿

  • Sale -41% อะแดปเตอร์ USB Type-C 20W 5V 4A

    Global Pi Shop USB type-C adapter 20W 5V 4A

    Power Supply Stable and durable, multiple protection, more security Type-C connector, 5V 4A Input Voltage Range : 90Vac to 264Vac Rated Input Voltage : 100Vac to 240Vac Input Frequency Range : 47Hz-63Hz Input Current : 0.8A max. (I/P100-240Vac) Size : L76*W44*32mm Weight : 125g Cable length : 1.2m

    490.00 ฿ 290.00 ฿

  • Sale -30% บอร์ด Arduino Nano (ยังไม่บัดกรี) สำหรับโปรเจกต์

    Global Pi Shop Arduino Nano (ยังไม่บัดกรี)

    Microcontroller: ATmega328P Operating Voltage (logic level): 5V Input Voltage (recommended): 7-12V (5V if bypassing the onboard voltage regulator) Input Voltage (limits): 6-15V Digital I/O Pins: 14 (6 with pwm) Analog Inputs: 8 DC Current per I/O Pin: 40ma (max of 200ma across all pins) Flash Memory: 32kb (2kb used by bootloader) SRAM: 2kb EEFROM: 1kb Clock Speed: 16mhz Dimensions 0.73" x 1.70"

    100.00 ฿ 70.00 ฿

  • Sale -40% ชุดโปรเจกต์ Arduino Smart Farm ระบบรดน้ำอัตโนมัติ

    Global Pi Shop Arduino Project Smart Farm (ไม่มีสาย jumper )

    📚 Smart Farm เบื้องต้น ด้วย Arduino UNO R3 1. แนวคิดของโปรเจกต์ (Project Concept) ปัจจุบันการทำเกษตรแบบดั้งเดิมอาจมีปัญหาเรื่องการรดน้ำไม่สม่ำเสมอ หรือสิ้นเปลืองเวลาในการเดินทางไปดูแลพืชพรรณด้วยตัวเอง ดังนั้น เราจึงสามารถประยุกต์ใช้เทคโนโลยีง่ายๆ เพื่อสร้าง ระบบรดน้ำอัตโนมัติ (Automatic Watering System) โดยใช้บอร์ด Arduino และเซนเซอร์เข้ามาช่วยได้ หลักการของโปรเจกต์นี้คือ เมื่อเซนเซอร์ตรวจพบว่าดินมีความแห้งถึงระดับที่กำหนด ระบบจะสั่งให้ปั๊มน้ำทำงานเพื่อรดน้ำต้นไม้โดยอัตโนมัติ และจะหยุดเมื่อดินมีความชื้นที่เหมาะสมแล้ว ซึ่งช่วยประหยัดเวลา เพิ่มความสะดวกสบาย และเพิ่มประสิทธิภาพในการดูแลพืชได้อย่างง่ายดาย 2. อุปกรณ์ที่ใช้ในโปรเจกต์ (Required Components) ✅ Arduino UNO R3 พร้อมสาย USB ✅ Soil Moisture Sensor (เซนเซอร์วัดความชื้นในดิน) ✅ ปั๊มน้ำ DC 5V Mini (แบบแช่) ✅ โมดูลรีเลย์ 1 ช่อง (Relay 5V Module) ✅ สายจัมเปอร์ (Jumper Wires) ✅ บอร์ดทดลอง (Breadboard) หรือสายไฟสำหรับเชื่อมต่อ ✅ แหล่งจ่ายไฟเสริม 5V (สำหรับปั๊มน้ำ, ถ้าจำเป็น) ✅ สายยางขนาดเล็ก และภาชนะใส่น้ำ 3. การต่อวงจร (Wiring Diagram) 3.1 การต่อเซนเซอร์และรีเลย์ (ฝั่งควบคุม) อุปกรณ์ ขาบนอุปกรณ์ ต่อกับขาบน Arduino Soil Moisture Sensor VCC 5V GND GND A0 (Analog Out) A0 Relay Module VCC 5V GND GND IN (Input) D7 3.2 การต่อปั๊มน้ำผ่านรีเลย์ (ฝั่งโหลด) ข้อควรระวัง: ปั๊มน้ำ DC ใช้กระแสไฟสูง ไม่ควรต่อไฟ 5V จากบอร์ด Arduino โดยตรง เพราะอาจทำให้บอร์ดเสียหายได้ ควรใช้แหล่งจ่ายไฟ 5V แยกต่างหาก ต่อสาย ขั้วบวก (+) จาก แหล่งจ่ายไฟ 5V แยก เข้าที่ขา COM ของรีเลย์ ต่อสายจากขา NO (Normally Open) ของรีเลย์ เข้าที่ ขั้วบวก (+) ของปั๊มน้ำ ต่อสาย ขั้วลบ (-) ของปั๊มน้ำ เข้าที่ ขั้วลบ (-) ของ แหล่งจ่ายไฟ 5V แยก (สำคัญมาก) ต่อสายจาก GND ของ Arduino ไปยัง ขั้วลบ (-) ของ แหล่งจ่ายไฟ 5V แยก ด้วย เพื่อให้มีกราวด์ร่วมกัน (Common Ground) 4. โค้ดโปรแกรม (Arduino Code) // กำหนดขาที่เชื่อมต่อ const int sensorPin = A0; // ขา Analog สำหรับ Soil Moisture Sensor const int relayPin = 7; // ขา Digital สำหรับควบคุม Relay // กำหนดค่าความชื้น (ปรับค่านี้ตามความเหมาะสม) // ค่านี้คือจุดที่ตัดสินว่าดิน "แห้ง" และควรเริ่มรดน้ำ // ยิ่งค่าสูง -> ดินยิ่งแห้ง // ทดลองหาค่าที่เหมาะสมโดยดูจาก Serial Monitor const int moistureThreshold = 700; void setup() { Serial.begin(9600); // เริ่มการสื่อสารแบบ Serial เพื่อดูค่า pinMode(relayPin, OUTPUT); // กำหนดขา relay เป็น Output // เริ่มต้นโดยสั่งให้ปั๊มหยุดทำงาน (Relay ส่วนใหญ่เป็น Active LOW) digitalWrite(relayPin, HIGH); } void loop() { // อ่านค่าความชื้นจากเซนเซอร์ int moistureValue = analogRead(sensorPin); // แสดงผลค่าความชื้นที่อ่านได้ทาง Serial Monitor Serial.print("Soil Moisture = "); Serial.println(moistureValue); // ตรวจสอบเงื่อนไขเพื่อเปิด-ปิดปั๊มน้ำ if (moistureValue > moistureThreshold) { // ถ้าค่าความชื้นสูงกว่าที่กำหนด (ดินแห้ง) Serial.println("Soil is dry, turning pump ON"); digitalWrite(relayPin, LOW); // สั่งให้ Relay ทำงาน (ปั๊มเปิด) } else { // ถ้าค่าความชื้นต่ำกว่าที่กำหนด (ดินเปียก) Serial.println("Soil is wet, turning pump OFF"); digitalWrite(relayPin, HIGH); // สั่งให้ Relay หยุดทำงาน (ปั๊มปิด) } // หน่วงเวลา 2 วินาทีก่อนที่จะอ่านค่าครั้งต่อไป delay(2000); } 5. หลักการทำงานและวิธีทดสอบ หลักการทำงาน Arduino จะอ่านค่าความชื้นในดินแบบอนาล็อก (0-1023) จากขา A0 ตลอดเวลา โดยค่าที่อ่านได้จะแปรผกผันกับความชื้น (ดินแห้งค่าสูง, ดินเปียกค่าต่ำ) จากนั้นนำค่าที่ได้มาเทียบกับค่า `moistureThreshold` ที่เราตั้งไว้ หากค่าที่อ่านได้สูงกว่า แสดงว่าดินแห้ง Arduino ก็จะส่งสัญญาณ LOW ไปยังรีเลย์ ทำให้รีเลย์ทำงานและจ่ายไฟให้ปั๊มน้ำเริ่มรดน้ำ เมื่อดินชุ่มชื้นขึ้น ค่าที่อ่านได้จะลดลงจนต่ำกว่า `moistureThreshold` ระบบก็จะสั่งให้ปั๊มหยุดทำงาน วนแบบนี้ไปเรื่อยๆ วิธีทดสอบ หาค่า Threshold: อัปโหลดโค้ดลงบอร์ดแล้วเปิด Serial Monitor ขึ้นมา ทดลองนำเซนเซอร์ไปจุ่มในดินที่แห้งสนิท สังเกตค่าที่ได้ จากนั้นนำไปจุ่มในดินที่เปียกชุ่ม สังเกตค่าอีกครั้ง แล้วเลือกค่ากลางๆ หรือค่าที่เหมาะสมมาตั้งเป็น `moistureThreshold` ในโค้ด ทดสอบปั๊ม: ขณะที่เซนเซอร์อยู่ในอากาศ (สถานะแห้ง) ปั๊มน้ำควรจะทำงาน (รีเลย์มีเสียง "คลิก" และไฟติด) เมื่อนำเซนเซอร์ไปจุ่มน้ำ ปั๊มน้ำควรจะหยุดทำงาน ติดตั้งใช้งานจริง: นำเซนเซอร์ไปปักในกระถางต้นไม้ และนำปั๊มน้ำใส่ในภาชนะบรรจุน้ำเพื่อเริ่มใช้งานระบบรดน้ำอัตโนมัติ

    500.00 ฿ 300.00 ฿

  • Sale -27% บอร์ด Arduino Uno R3 ไมโครคอนโทรลเลอร์

    Global Pi Shop Arduino uno R3

    UNO R3 ATMega328P USB Compatible Development Board is a microcontroller board based on the ATmega328. It has 14 digital input/output pins (of which 6 can be used as PWM outputs), 6 analogue inputs, a 16 MHz crystal oscillator, a USB connection, a power jack, an ICSP header, and a reset button. It contains everything needed to support the microcontroller; Simply connect it to a computer with a USB cable or power it with a AC-to-DC adapter or battery to get started. This upgraded model is completely compatible with original Arduino UNO. Microcontroller ATmega328 Operating Voltage 5V Input Voltage (recommended) 7-12V Input Voltage (limits) 6-20V Digital I/O Pins 14 (of which 6 provide PWM output) Analog Input Pins 6 DC Current per I/O Pin 40 mA DC Current for 3.3V Pin 50 mA Flash Memory 32 KB ( ATmega328 ) of which 0.5 KB used by bootloader SRAM 2 KB ( ATmega328 ) EEPROM 1 KB ( ATmega328 ) Clock Speed 16 MHz

    150.00 ฿ 110.00 ฿

  • Sale -26% Arduino Uno R4 WIFI

    Global Pi Shop Arduino Uno R4 WIFI

    The Arduino UNO R4 WiFi combines the processing power and exciting new peripherals of the RA4M1 microcontroller from Renesas with the wireless connectivity power of the ESP32-S3 from Espressif. On top of this, the UNO R4 WiFi offers an on-board 12x8 LED matrix, Qwiic connector, VRTC, and OFF pin, covering all potential needs makers will have for their next project. With the UNO R4 WiFi, you can easily upgrade your project and add wireless connectivity to expand the reach of your current setup. If this is your first project, this board has everything you need to spark your creativity. Hardware compatibility with UNO form factor: The UNO R4 WiFi maintains the same form factor, pinout, and 5 V operating voltage as its predecessor, the UNO R3, ensuring a seamless transition for existing shields and projects. Expanded memory and faster clock: The UNO R4 WiFi boasts increased memory and a faster clock speed, enabling more precise calculations and effortless handling of complex projects. Extra on-board peripherals: The UNO R4 WiFi introduces a range of on-board peripherals, including a 12-bit DAC, CAN BUS, and OP AMP, providing expanded capabilities and design flexibility. Extended 24 V tolerance: The UNO R4 WiFi supports a wider input voltage range, allowing seamless integration with motors, LED strips, and other actuators using a single power source. HID support: With built-in HID support, the UNO R4 WiFi can simulate a mouse or keyboard when connected to a computer via USB, making it easy to send keystrokes and mouse movements. Wi-Fi® and Bluetooth®: The UNO R4 WiFi hosts an ESP32-S3 module, enabling makers to add wireless connectivity to their projects. Combined with the Arduino IoT Cloud, makers can monitor and control their projects remotely. Qwiic connector: The UNO R4 WiFi features a Qwiic I2C connector, allowing easy connection to nodes from the extensive Qwiic ecosystem. Adapter cables also enable compatibility with sensors and actuators based on other connectors. Support for battery-powered RTC: The UNO R4 WiFi includes additional pins, including an "OFF" pin to turn off the board and a "VRTC" pin to keep the internal Real-Time Clock powered and running. LED matrix: The UNO R4 WiFi incorporates a bright 12x8 red LED matrix, ideal for creative projects with animations or plotting sensor data, eliminating the need for additional hardware. Diagnostics for runtime errors: The UNO R4 WiFi includes an error-catching mechanism that detects runtime crashes and provides detailed explanations and hints about the code line causing the crash.

    700.00 ฿ 520.00 ฿

  • Last stock! BBC Micro:bit V2 บอร์ดคอมพิวเตอร์จิ๋ว

    Global Pi Shop BBC Micro:bit V2

    MEFV22C is a BBC micro:bit CLUB contains 10x BBC micro:bit V2 boards and all essentials needed to power boards and start programming. This BBC micro:bit is a pocket-sized computer that introduces you to how SW and HW work together. It has an LED light display, buttons, sensors, a speaker, microphone and many other input/output features that, when programmed, let it interact with you and your world. You will need a computer, tablet or phone to write and send code to the micro:bit, but once the code is on the micro:bit it works as a standalone device with just the battery pack. Bluetooth 5.1 connectivity with Bluetooth Low Energy (BLE), ideal for communicating with other devices such as smartphones and tablets. micro:bit works with Microsoft, MacOS, Apple iPads(and iPhones) and Android devices Computing is made physical Use the micro:bit to sense, measure and log light, temperature, sound, movement, magnetism Nordic nRF52833 processor with 512KB flash and 128KB RAM 5x5 LED display matrix, 25 red LEDs with 255-step intensity control 2 programmable tactile button for user funct, full speed USB 2.0 interface via micro USB connection New notched edge connector makes it easier to connect things like crocodile clip, conductive thread MEMS Microphone with LED indicator, dedicated I2C bus for peripherals Onboard speaker, capacitive touch sensor, motion sensor and temperature sensors LED matrix can be used to sense ambient light with software algorithm

    650.00 ฿

  • จอยเกม BitPlayer สำหรับ micro:bit Game Controller

    Global Pi Shop BitPlayer จอยเกมสำหรับ micro:bit | Game Controller พร้อมปุ่มควบคุมและจอยสติ๊ก ใช้กับหุ่นยนต์และเกม

    BitPlayer provides you inspiration and excitement to make creations such as a portable piano or a smart calculator. To be easier to carry and use, BitPlayer abandoned an allbutton design that a typical game controller would use in favor of a 2-axes joystick. It includes another 6 programmable buttons labeled as L, R, A, B, C and D. Besides, the BitPlayer itself features a buzzer, a vibration motor and a Grove I2 C port to give kids lively and interactive experience of game. You can easily enjoy DIY projects anywhere by installing 2 AAA batteries into the BitPlayer. As already tested, BitPlayer can interact with other devices when Bluetooth positioning is within a distance range about 10 meter. If you want to implement a remote control car, we recommend that you also prepare

    850.00 ฿

  • Sale -40% Breadboard 400 รู สำหรับ Raspberry Pi

    Global Pi Shop Breadboard 400 รู for Raspberry Pi และ arduino

    Breadboard 400 รู: บอร์ดทดลองขนาดกะทัดรัดสำหรับทุกโปรเจกต์ Breadboard (เบรดบอร์ด) 400 รู คือแผ่นสำหรับทดลองวงจรอิเล็กทรอนิกส์แบบไม่ต้องบัดกรี (Solderless) ที่มีขนาดกะทัดรัด เหมาะสำหรับผู้เริ่มต้นและโปรเจกต์ที่ไม่ซับซ้อนมาก เช่น วงจรไฟกระพริบ, การอ่านค่าเซนเซอร์พื้นฐาน, หรือการควบคุม LED ด้วยปุ่มกด สามารถใช้สร้างวงจรต้นแบบ (Prototype) ได้อย่างรวดเร็วและสะดวกสบาย ข้อมูลจำเพาะ (Specifications) จำนวนรูทั้งหมด 400 รู พื้นที่จ่ายไฟ (Power Rail) 2 แถวคู่ (บน-ล่าง), รวม 100 รู พื้นที่อุปกรณ์ (Terminal Strip) 300 รู ขนาดโดยประมาณ 8.2 x 5.5 ซม. วัสดุ พลาสติก ABS พร้อมเทปกาวด้านล่างสำหรับยึดติด คุณสมบัติพิเศษ มีรอยต่อด้านข้างสำหรับเชื่อมกับ Breadboard ชิ้นอื่นเพื่อขยายพื้นที่ การใช้งานกับ Raspberry Pi และ Arduino ต่อกับ Arduino ได้โดยตรง: บอร์ด Arduino ส่วนใหญ่ (เช่น UNO, Nano) มีขาแบบ Male Pin ที่สามารถใช้สาย Jumper แบบผู้-ผู้ (Male-to-Male) เชื่อมต่อมายัง Breadboard ได้ทันที ทำให้สะดวกอย่างยิ่ง ต่อกับ Raspberry Pi ผ่าน GPIO: สามารถเชื่อมต่อได้โดยใช้สาย Jumper แบบผู้-เมีย (Male-to-Female) หรือใช้อุปกรณ์เสริมอย่าง T-Cobbler และสายแพ GPIO 40 pin เพื่อจำลองขา GPIO ทั้งหมดมาไว้บน Breadboard ทำให้ต่อวงจรได้ง่ายและเป็นระเบียบ ตัวอย่างโปรเจกต์ที่เหมาะสม โปรเจกต์ อุปกรณ์หลักที่ใช้ วงจรไฟกระพริบ LED + ตัวต้านทาน เซนเซอร์วัดอุณหภูมิและความชื้น DHT11 / DHT22 + จอ OLED สวิตช์ควบคุมอุปกรณ์ ปุ่มกด (Push Button) + โมดูลรีเลย์ 5V ระบบแจ้งเตือนความชื้นในดิน Soil Moisture Sensor + Buzzer Smart Farm (เบื้องต้น) ใช้ร่วมกับ ESP32/ESP8266 เพื่อควบคุมผ่าน Wi-Fi ข้อดีของ Breadboard 400 รู ขนาดกะทัดรัด: ไม่เปลืองพื้นที่ เหมาะกับโต๊ะทำงานที่มีจำกัดและโปรเจกต์ขนาดเล็กถึงกลาง ไม่ต้องบัดกรี: สามารถแก้ไข, ปรับเปลี่ยน, หรือรื้อวงจรได้อย่างง่ายดายและรวดเร็ว เข้ากันได้ดี: ใช้งานได้กับไมโครคอนโทรลเลอร์ยอดนิยมทุกตระกูล ราคาถูก: เป็นอุปกรณ์พื้นฐานที่มีราคาไม่แพงและสามารถนำกลับมาใช้ใหม่ได้เรื่อยๆ 📌 หมายเหตุ: หากโปรเจกต์ของคุณมีขนาดใหญ่และต้องใช้อุปกรณ์จำนวนมาก เช่น เซนเซอร์หลายตัว, โมดูลรีเลย์หลายช่อง, จอแสดงผล, และปุ่มกดหลายปุ่ม การเลือกใช้ Breadboard ขนาด 830 รู หรือนำขนาด 400 รูมาต่อกัน 2 แผ่น อาจเป็นทางเลือกที่เหมาะสมกว่า  

    25.00 ฿ 15.00 ฿

  • Sale -44% Breadboard 830 รู สำหรับ Raspberry Pi

    Global Pi Shop Breadboard 830 รู for Raspberry Pi และ arduino

    Breadboard 830 รู คืออะไร และใช้งานอย่างไร Breadboard (เบรดบอร์ด) หรือที่เรียกกันว่า "บอร์ดทดลอง" คืออุปกรณ์พื้นฐานที่สำคัญที่สุดสำหรับนักประดิษฐ์และผู้ที่ชื่นชอบงานอิเล็กทรอนิกส์ ทำหน้าที่เป็นแผงวงจรชั่วคราวที่เราสามารถเสียบอุปกรณ์ต่างๆ เช่น ตัวต้านทาน, LED, IC, เซนเซอร์ หรือเชื่อมต่อสายไฟเข้าด้วยกันได้อย่างง่ายดาย **โดยไม่จำเป็นต้องบัดกรี** ทำให้สามารถปรับเปลี่ยนและแก้ไขวงจรได้อย่างรวดเร็ว สำหรับรุ่น 830 รู เป็นเบรดบอร์ดขนาดกลางถึงใหญ่ที่ได้รับความนิยมสูง มีพื้นที่เพียงพอสำหรับโปรเจกต์ที่ซับซ้อนขึ้น ซึ่งต้องใช้อุปกรณ์และสายไฟจำนวนมาก เหมาะสำหรับใช้งานร่วมกับไมโครคอนโทรลเลอร์อย่าง Arduino, ESP32, NodeMCU หรือแม้กระทั่ง Raspberry Pi โครงสร้างของ Breadboard 830 รู แผงจ่ายไฟ (Power Rails) โดยทั่วไปจะอยู่บริเวณขอบบนและขอบล่างของบอร์ด มีสัญลักษณ์เส้นสีแดง (+) และสีน้ำเงิน/ดำ (-) กำกับไว้ รูทั้งหมดในแนวนอนของแต่ละเส้นจะเชื่อมต่อถึงกัน เหมาะสำหรับใช้เป็นจุดจ่ายไฟหลักของวงจร เช่น ต่อไฟ 5V หรือ 3.3V เข้ากับแถบสีแดง (+) และต่อกราวด์ (GND) เข้ากับแถบสีน้ำเงิน (-) พื้นที่เชื่อมต่ออุปกรณ์ (Terminal Strips) เป็นพื้นที่ส่วนใหญ่ตรงกลางของบอร์ด การเชื่อมต่อของรูในส่วนนี้จะแตกต่างจากแผงจ่ายไฟ โดยรูจำนวน 5 รูในแนวตั้งของแต่ละคอลัมน์จะเชื่อมต่อถึงกัน ใช้สำหรับเสียบขาของอุปกรณ์ต่างๆ เช่น ขาของ LED, ตัวต้านทาน, ขาเซนเซอร์ หรือ IC เพื่อให้เชื่อมต่อกันในวงจรตามที่เราออกแบบ ข้อมูลจำเพาะ (Specifications) จำนวนรูทั้งหมด 830 รู พื้นที่จ่ายไฟ (Power Rail) 2 แถวคู่ (บน-ล่าง), รวม 200 รู พื้นที่อุปกรณ์ (Terminal Strip) 630 รู ขนาดโดยประมาณ 16.5 x 5.5 ซม. แรงดันไฟฟ้าที่รองรับ โดยทั่วไปแนะนำไม่เกิน 5V (เหมาะสำหรับ Arduino/Raspberry Pi) กระแสไฟฟ้าที่รองรับ ประมาณ 300 - 500 mA ต่อหนึ่งแถวเชื่อมต่อ คุณสมบัติพิเศษ ด้านล่างมีเทปกาวสองหน้าสำหรับยึดติดกับฐานหรือชิ้นงาน มีรอยต่อด้านข้างสำหรับเชื่อมต่อกับเบรดบอร์ดชิ้นอื่นเพื่อขยายพื้นที่ การใช้งานร่วมกับ Raspberry Pi แม้ว่าบอร์ด Raspberry Pi จะไม่มีขาที่เสียบลงบน Breadboard ได้โดยตรงเหมือน Arduino แต่เราสามารถเชื่อมต่อได้อย่างง่ายดายผ่าน 2 วิธีหลัก: สาย Jumper (Male-to-Female): ใช้สายจัมเปอร์หัวผู้-เมีย เสียบจากขา GPIO บน Raspberry Pi มายังรูบน Breadboard โดยตรง T-Cobbler และสายแพ GPIO: เป็นวิธีที่นิยมและสะดวกที่สุด โดยใช้ T-Cobbler เสียบลงบน Breadboard ซึ่งจะจำลองขา GPIO ทั้งหมดของ Raspberry Pi มาไว้บนบอร์ด ทำให้ต่อวงจรได้ง่ายและเป็นระเบียบ ตัวอย่างการใช้งาน Breadboard 830 รู เหมาะสำหรับโปรเจกต์ที่หลากหลาย เช่น: วงจรควบคุม LED และปุ่มกดพื้นฐาน เชื่อมต่อและอ่านค่าจากเซนเซอร์ต่างๆ (เช่น เซนเซอร์อุณหภูมิ DHT11, เซนเซอร์แก๊ส MQ-2, เซนเซอร์วัดความชื้นในดิน) ทดลองวงจรขับมอเตอร์ด้วย IC Driver สร้างโปรเจกต์ IoT, Smart Farm, หรือระบบเตือนภัยต้นแบบก่อนนำไปทำแผ่นวงจรพิมพ์ (PCB) จริง

    45.00 ฿ 25.00 ฿

  • Sale -63% เคส Raspberry Pi 4 สีดำพร้อมช่องระบายอากาศ

    Global Pi Shop Case Raspberry Pi 4

    Professional, high quality ABS case designed specifically for the Raspberry Pi 4. The case keeps your device safe whilst maintaining full access to all the pins and ports. Rugged 3-piece ABS construction Ventilated base for passive cooling Full access to all ports and pins

    590.00 ฿ 220.00 ฿

  • Sale -38% เซ็นเซอร์ DHT11 วัดอุณหภูมิและความชื้น

    Global Pi Shop DHT11 Humidity and Temperature sensor For Arduino Nodemcu ESP32

    The DHT11 sensor is one of the most popular sensors for measuring temperature and humidity, especially in Arduino projects because it is easy to use, cheap, and readily available. What is DHT11? DHT11 is a sensor that measures temperature and relative humidity in the air. This sensor has a capacitive humidity sensor and a thermistor temperature sensor inside, which outputs digital data, making it very easy to connect to Arduino. DHT11 specifications list details Humidity measurement range 20–90% RH (±5% RH) Temperature measurement range 0–50°C (±2°C) Supply voltage 3.3V – 5.5V Output signal Single-wire digital Read Rate 1 time/second (1Hz) Number of legs 3 legs (VCC, GND, Data) or 4 legs (if it is a module but actually uses 3 legs) Using DHT11 with Arduino Wiring: DHT11 Arduino VCC 5V GND GND DATA Digital Pin (eg. D2) Some models have a pull-up resistor (about 10KΩ) already attached to the module. If it is a bare sensor, you may need to connect your own resistance. Arduino code example: Requires DHT library, which can be installed via Library Manager. define DHTPIN 2 // The pin connected to the DHT11's Data #define DHTTYPE DHT11 // The type of sensor DHT dht(DHTPIN, DHTTYPE); void setup() { Serial.begin(9600); dht.begin(); } void loop() { float h = dht.readHumidity(); float t = dht.readTemperature(); if (isnan(h) || isnan(t)) { Serial.println("Read failed!"); return; } Serial.print("Humidity: "); Serial.print(h); Serial.print(" %\t"); Serial.print("Temperature: "); Serial.print(t); Serial.println(" *C"); delay(2000); // wait 2 seconds }

    40.00 ฿ 25.00 ฿

  • Sale -29% โมดูลนาฬิกา Real Time Clock DS3231 RTC

    Global Pi Shop DS3231 RTC Real time clock module (ไม่มีถ่าน) ใช้งานกับ Arduino raspberry pi esp32 esp8266 nodemcu

    DS3231 RTC คืออะไร? โมดูลนาฬิกาความแม่นยำสูง DS3231 คือ โมดูลนาฬิกาเรียลไทม์ (RTC - Real Time Clock) ความแม่นยำสูง ใช้สำหรับเก็บข้อมูลวันที่และเวลาอย่างต่อเนื่องและถูกต้อง แม้ว่าแหล่งจ่ายไฟหลักของระบบจะถูกปิดหรือตัดการเชื่อมต่อออกไปก็ตาม เนื่องจากมีแบตเตอรี่สำรอง (CR2032) ในตัวเพื่อรักษาเวลาไว้ โมดูลนี้เหมาะอย่างยิ่งสำหรับโปรเจกต์ที่ต้องการความเที่ยงตรงของเวลา เช่น ระบบบันทึกข้อมูล (Data Logger), นาฬิกาปลุก, ระบบตั้งเวลาเปิด-ปิดอุปกรณ์อัตโนมัติ และอื่นๆ สเปคของ DS3231 RTC แรงดันไฟฟ้าใช้งาน 3.3V – 5.5V (ใช้ได้ทั้ง Arduino และ Raspberry Pi) การสื่อสาร I2C (SCL, SDA) ความแม่นยำ ±2 นาทีต่อปี (แม่นยำกว่า DS1307 มาก) แบตเตอรี่สำรอง CR2032 (รักษาเวลาได้นานหลายปีแม้ไม่มีไฟเลี้ยง) ช่วงปีที่รองรับ ค.ศ. 2000 – 2099 คุณสมบัติพิเศษ มีวงจรชดเชยอุณหภูมิในตัว (Temperature-compensated) ทำให้เวลาไม่เพี้ยนตามอุณหภูมิที่เปลี่ยนไป การใช้งานกับ Arduino ✅ การต่อสายกับ Arduino UNO ขาบน DS3231 ต่อกับขาบน Arduino UNO VCC 5V GND GND SDA A4 SCL A5 หมายเหตุ: Arduino รุ่นอื่นอาจใช้ขา I2C ที่แตกต่างกัน (เช่น Mega 2560 ใช้ขา 20, 21) กรุณาตรวจสอบ Pinout ของบอร์ดที่ใช้ ✅ ตัวอย่างโค้ด Arduino ต้องติดตั้งไลบรารี RTClib by Adafruit ก่อนใช้งานผ่าน Library Manager ของ Arduino IDE #include <Wire.h> #include <RTClib.h> RTC_DS3231 rtc; void setup() { Serial.begin(9600); Wire.begin(); rtc.begin(); // ----- ตั้งเวลาเริ่มต้น (สำคัญมาก!) ----- // หากเป็นครั้งแรก ให้ยกเลิกคอมเมนต์บรรทัดล่างนี้เพื่อตั้งเวลาปัจจุบัน // จากนั้นคอมเมนต์กลับเหมือนเดิม แล้วอัปโหลดโค้ดอีกครั้ง // rtc.adjust(DateTime(F(__DATE__), F(__TIME__))); // ตรวจสอบว่าไฟเคยดับหรือไม่ if (rtc.lostPower()) { Serial.println("RTC lost power, let's set the time!"); // ตั้งเวลาเริ่มต้นหากไม่มีการตั้งค่ามาก่อน // rtc.adjust(DateTime(2025, 8, 7, 10, 0, 0)); } } void loop() { DateTime now = rtc.now(); Serial.print(now.year(), DEC); Serial.print('/'); Serial.print(now.month(), DEC); Serial.print('/'); Serial.print(now.day(), DEC); Serial.print(" "); Serial.print(now.hour(), DEC); Serial.print(':'); Serial.print(now.minute(), DEC); Serial.print(':'); Serial.println(now.second(), DEC); delay(1000); } ข้อควรจำ: บรรทัด rtc.adjust(...) ใช้สำหรับตั้งเวลาเริ่มต้นให้กับโมดูลเพียง "ครั้งเดียว" เท่านั้น หลังจากอัปโหลดโค้ดครั้งแรกเพื่อให้เวลาตรงแล้ว ให้ใส่คอมเมนต์ (//) นำหน้าบรรทัดนั้น แล้วอัปโหลดโค้ดอีกครั้ง เพื่อไม่ให้เวลาถูกรีเซ็ตใหม่ทุกครั้งที่บอร์ดเริ่มทำงาน การใช้งานกับ Raspberry Pi ✅ การติดตั้งและตรวจสอบ เปิด Terminal และรันคำสั่งต่อไปนี้: sudo apt-get update sudo apt-get install i2c-tools python3-smbus จากนั้นตรวจสอบว่า Raspberry Pi มองเห็นโมดูลหรือไม่: sudo i2cdetect -y 1 หากการเชื่อมต่อถูกต้อง คุณจะเห็นเลข 0x68 ปรากฏบนตาราง ซึ่งเป็น I2C Address ของ DS3231 หลังจากนั้นสามารถใช้ไลบรารี Python เช่น adafruit-circuitpython-ds3231 เพื่อเขียนโปรแกรมอ่านและตั้งค่าเวลาได้ ไอเดียการประยุกต์ใช้งาน โปรเจกต์ การใช้งาน RTC Data Logger บันทึกค่าจากเซนเซอร์ต่างๆ พร้อมประทับเวลา (Timestamp) ที่แม่นยำ ระบบเปิด-ปิดไฟอัตโนมัติ ตั้งเวลาเปิดไฟตอน 18:00 น. และปิดตอน 06:00 น. ของทุกวัน นาฬิกา DIY สร้างนาฬิกาดิจิทัลของตัวเองโดยแสดงผลบนจอ LCD หรือ OLED ระบบรดน้ำต้นไม้อัตโนมัติ สั่งให้ปั๊มน้ำทำงานตามเวลาที่กำหนดไว้ เช่น 07:00 น. และ 17:00 น. ระบบเตือนหรือนาฬิกาปลุก ตั้งเวลาเพื่อให้ Buzzer, LED หรืออุปกรณ์อื่นๆ ทำงานเมื่อถึงเวลาที่กำหนด ข้อดีของ DS3231 แม่นยำสูงมาก เมื่อเทียบกับ RTC รุ่นยอดนิยมอย่าง DS1307 มีแบตเตอรี่สำรอง ทำให้เวลาเดินต่อเนื่องแม้ไม่มีไฟเลี้ยง ใช้งานได้หลายแพลตฟอร์ม ทั้ง Arduino, ESP32, Raspberry Pi และอื่นๆ สื่อสารผ่าน I2C ทำให้ประหยัดขาและสามารถต่ออุปกรณ์อื่นบนบัสเดียวกันได้

    70.00 ฿ 50.00 ฿

  • Edge AI Computer with NVIDIA Jetson Xavier NX 8GB พร้อมจอภาพ

    Global Pi Shop Edge AI Computer with NVIDIA® Jetson Xavier™ NX 8GB

    Feature Note For optimal performance with reComputer, we recommend using 128GB / 256GB / 512GB / 1TB SSDs from Seeed. Since some SSDs on the market may only be compatible with specific JetPack versions which may cause the device to fail to function properly , and this issue is also present with official NVIDIA dev kits. If you are looking for the version without power adapter, please check out reComputer J2021 without power adapter . Specification Jetson Xavier NX System on Module AI Performance reComputer J2022, Xavier NX 16GB reComputer J2021, Xavier NX 8GB GPU 384-core NVIDIA Volta™ architecture GPU with 48 Tensor Cores CPU 6-core NVIDIA Carmel Arm®v8.2 64-bit CPU 6MB L2 + 4MB L3 Memory 16 GB 128-bit LPDDR4x 59.7GB/s 8GB 128-bit LPDDR4x 59.7GB/s Storage 16 GB eMMC 5.1 Video Encoder 2x 4K60 | 4x 4K30 | 10x 1080p60 | 22x 1080p30 (H.265) Video Decoder 2x 8K30 | 6x 4K60 | 12x 4K30 | 22x 1080p60 | 44x 1080p30 (H.265) Carrier Board Networking Ethernet 1x RJ45 Gigabit Ethernet Connector (10/100/1000) M.2 KEY E 1x M.2 Key E I/O USB 4x USB 3.1 Type A Connector; 1x USB Type-C (Device mode) CSI Camera 2x CSI Camera (15 pos, 1mm pitch, MIPI CSI-2 ) Display 1x HDMI Type A; 1x DP Fan 1x FAN connector(5V PWM) CAN 1x CAN Multifunctional Port 1x 40-Pin Expansion header RTC RTC 2-pin RTC socket Power 9-19V DC Mechanical Dimensions (W x D x H) 130mm x 120mm x 58.5mm (with case) Installation Desk, wall-mounting Operating Temperature -10℃~60℃ Warranty 1 Year Hardware Overview reComputer J202 carrier board , included in the full system - reComputer J202 1 Desktop, Wall Mount, Expandable, or Fit in Anywhere Application Autonomous Mobile Robot (AMR) AI Video Analytics Machine Vision Documents Datasheet Schematic 3D File See Nvidia Jetson Product Catalog Nvidia Jetson Comparison Nvidia Jetson Product Comparison Seeed Nvidia Jetson Success Cases Seeed Jetson One Pager ECCN/HTS HSCODE 8471419000 USHSCODE 8543708800 UPC EUHSCODE 8471800000 COO CHINA Part List Acrylic Cover 1x Aluminium Frame 1x Jetson Xavier NX module 1x Aluminum heatsink with fan 1x Carrier board 1x 12V/5A(Barrel Jack 5.5/2.5mm) Power Adapter (Power cable not included) 1x

    30,000.00 ฿

  • ELECFREAKS micro:bit Drone:bit Kit (ไม่รวมบอร์ด micro:bit)

    Global Pi Shop ELECFREAKS micro:bit Drone:bit Kit (Without micro:bit Board)

    The micro:bit Drone:bit Kit has successfully combined micro:bit with drones, which has provided another possibility for students to create and explore in the sky. Through your operation, you can give it commands of hovering at a fixed altitude, flying from a waypoint, curvilinear flight, rolling in the sky, etc. even in the classrooms, get your first professional micro:bit Drone:bit Kit now! Drone:bit BREAKTHROUGH—PROFESSIONAL GRADE It is the first kind of drone equipped with optical flow locating in professional-grade which is able to hover indoors in a fixed point through programming in the world, with built-in optical flow sensors in high sensitivity and TOF sensors, they help to hover and locate in a more precise way. It is probably your first drone in professional grade that listen to your commands! Drone:bit BREAKTHROUGH-FLYING SAFELY The sealed propeller guards make sure your drone flies safely. Drone:bit IN CLASSROOMS-AVAILABLE IN CLASSROOMS Drone:bit could fly in the classrooms! Drone:bit BREAKTHROUGH—CODE FOR MORE PROJECTS Simple graphical and Python programming, available for complicated flying routines, flying gestures and rolling, etc., there are more possibilities waiting to be explored. Drone:bit IN CLASSROOMS — FIND MORE IN WIKI SPECIFICATION product name micro:bit Drone:bit Kit Rated Voltage 3.7V Battery Capacity 800mAh Charging Voltage 5V Charging Current 0.8A Charging Port Micro USB Power Protection Over Charge/Discharge Protection Propeller Guards Support LED 5 PCS (one for power indicator, four for status indicator) Waypoints Optical Flow Fixing Altitude Barometer + TOF micro:bit Programming Support 2.4G Remote Control Mode Support Flying Time 8min Weight 509g Flying Height ≤100m

    6,000.00 ฿

  • Elecfreaks Micro:bit Starter Kit ชุดเริ่มต้น Coding

    Global Pi Shop Elefreaks Micro:bit Starter Kit

    ELECFREAKS BBC micro bit Starter Kit is designed for children who are beginning to learn the electric circuit and programming knowledge. Students can use these micro:bit basic DIY kits to create or complete more experiments, such as traffic lights, using photocell to control micro:bit screen or LED.

    1,200.00 ฿ - 1,800.00 ฿

  • Google Coral USB Accelerator อุปกรณ์เร่ง AI

    Global Pi Shop Google Coral USB Accelerator

    The Coral USB Accelerator adds a Coral Edge TPU to your Linux, Mac, or Windows computer so you can accelerate your machine learning models. This page is your guide to get started. All you need to do is download the Edge TPU runtime and PyCoral library. Then we'll show you how to run a TensorFlow Lite model on the Edge TPU. To learn more about the hardware, see the USB Accelerator datasheet . Requirements A computer with one of the following operating systems: Linux Debian 10, or a derivative thereof (such as Ubuntu 18.04), and a system architecture of either x86-64, Armv7 (32-bit), or Armv8 (64-bit) (includes support for Raspberry Pi 3 Model B+, Raspberry Pi 4, and Raspberry Pi Zero 2) macOS 10.15 (Catalina) or 11 (Big Sur), with either MacPorts or Homebrew Installed Windows 10 One available USB port (for the best performance, use a USB 3.0 port) Python 3.6 - 3.9

    3,350.00 ฿

  • Grove Base Kit สำหรับ Raspberry Pi ชุดเริ่มต้น

    Global Pi Shop Grove Base Kit for Raspberry Pi

    On top of that, we have provided you with detailed instructions on the use of Raspberry Pi and the use of each module, which including 8 lessons for module. Just click the LEARN tab to view this user manual. Also you can check the Vedio Guide here , which will tell you how to use this kit step by step. All in all, whether you are a student, teacher, artist, hardware enthusiast, and so on, with the help of the Grove Base Kit for Raspberry Pi, you will get to know Raspberry Pi quickly and comprehensively. Part List Grove Base Hat for Raspberry Pi Grove - Red LED Button Grove - Buzzer Grove - Moisture Sensor Grove - Temperature & Humidity Sensor (DHT11) Grove - Light Sensor Grove - mini PIR motion sensor Grove - Ultrasonic Ranger Grove - Relay Grove - Servo Grove - 16 x 2 LCD (White on Blue)

    1,800.00 ฿

  • Sale -38% เซ็นเซอร์ Ultrasonic HC-SR04P ตรวจจับระยะทาง

    Global Pi Shop HC-SR04 Ultrasonic Sensor

    Working voltage : DC 5 V Static current : 3 mA Working temperature : 0 ~ + 70 Output way : GPIO Induction Angle : Less than 15 Detection range : 2 cm to 4 m Detecting precision : 0.3 cm + 1% Sensor size : Approx. 45.1 x 20 x 14.5mm

    40.00 ฿ 25.00 ฿

  • Heat Sink สำหรับ Raspberry Pi ระบายความร้อน

    Global Pi Shop Heat Sink For RPI

    Heat sink is suitable for Raspberry pi and Orange pi and many other devices.

    26.00 ฿

  • Sale -32% เซ็นเซอร์ IR Infrared ตรวจจับสิ่งกีดขวาง

    Global Pi Shop IR infrared sensor ใช้งานกับ Arduino raspberry pi esp32 esp8266 nodemcu

    IR Infrared Sensor คืออะไร? วิธีใช้งานตรวจจับวัตถุด้วย Arduino IR Sensor หรือ เซ็นเซอร์อินฟราเรด คือเซ็นเซอร์อิเล็กทรอนิกส์ที่นิยมใช้ในการตรวจจับวัตถุในระยะใกล้ หรือใช้ตรวจจับการสะท้อนของแสงอินฟราเรด เป็นอุปกรณ์พื้นฐานที่สำคัญสำหรับโปรเจกต์หุ่นยนต์และระบบอัตโนมัติต่างๆ หลักการทำงานของ IR Sensor การทำงานของเซนเซอร์นั้นตรงไปตรงมาและเข้าใจง่าย: ภาคส่ง (Transmitter): โมดูลจะปล่อยลำแสงอินฟราเรด (ซึ่งตาคนมองไม่เห็น) ออกไปจากตัวส่ง (IR LED) ภาครับ (Receiver): เมื่อลำแสงนั้นไปกระทบกับวัตถุ มันจะสะท้อนกลับมา และถูกตรวจจับโดยตัวรับแสงอินฟราเรด (Photodiode หรือ Phototransistor) การส่งสัญญาณ: เมื่อภาครับตรวจจับแสงสะท้อนได้ วงจรบนโมดูลจะส่งสัญญาณดิจิทัล (0 หรือ 1) ออกมาที่ขา OUT เพื่อแจ้งให้ไมโครคอนโทรลเลอร์ (เช่น Arduino) ทราบว่า "มีวัตถุอยู่ด้านหน้า" สเปคของ IR Sensor Module (สำหรับ Arduino) รายการ รายละเอียด แรงดันใช้งาน 3.3V – 5V (ใช้ไฟจากบอร์ด Arduino ได้โดยตรง) ระยะตรวจจับ ประมาณ 2 – 30 ซม. (ขึ้นอยู่กับสีและความเรียบของผิววัตถุ) เอาต์พุต ดิจิทัล (Digital) ส่งค่า 0 หรือ 1 การปรับความไว สามารถปรับได้ด้วยตัวต้านทานปรับค่าได้ (VR) บนบอร์ด ไฟแสดงสถานะ มี LED แสดงสถานะการทำงาน (มักจะสว่างเมื่อตรวจพบวัตถุ) อินเตอร์เฟส 3 ขา: VCC, GND, OUT การใช้งานกับ Arduino ✅ การต่อสาย VCC → ต่อกับขา 5V บนบอร์ด Arduino GND → ต่อกับขา GND บนบอร์ด Arduino OUT → ต่อกับขาดิจิทัล (Digital Pin) ขาใดก็ได้ เช่น D2 ✅ ตัวอย่างโค้ดใช้งานง่าย โค้ดนี้จะอ่านค่าจาก IR Sensor และเมื่อตรวจพบวัตถุ จะสั่งให้ LED บนบอร์ด (ขา 13) ติดสว่าง พร้อมทั้งแสดงข้อความใน Serial Monitor int irPin = 2; // ขาที่รับสัญญาณจากเซนเซอร์ int ledPin = 13; // LED Build-in บนบอร์ด Arduino void setup() { pinMode(irPin, INPUT); // กำหนดให้ขา irPin เป็น Input pinMode(ledPin, OUTPUT); // กำหนดให้ขา ledPin เป็น Output Serial.begin(9600); // เริ่มการสื่อสารแบบ Serial } void loop() { int objectState = digitalRead(irPin); // อ่านค่าจากเซนเซอร์ // ตรวจสอบสถานะ: เซนเซอร์บางรุ่นจะให้ค่า LOW เมื่อเจอวัตถุ if (objectState == LOW) { digitalWrite(ledPin, HIGH); // เปิด LED Serial.println("พบวัตถุ!"); } else { digitalWrite(ledPin, LOW); // ปิด LED Serial.println("ไม่พบวัตถุ"); } delay(200); // หน่วงเวลาเพื่อลดการอ่านค่าที่เร็วเกินไป } หมายเหตุ: เอาต์พุตของ IR Sensor แต่ละรุ่นอาจแตกต่างกัน บางรุ่นส่งค่า LOW (0) เมื่อเจอวัตถุ แต่บางรุ่นอาจส่งค่า HIGH (1) แนะนำให้ทดลองเพื่อตรวจสอบการทำงานของเซนเซอร์ที่คุณมี ไอเดียการประยุกต์ใช้งาน (Application Ideas) โปรเจกต์ รายละเอียดการใช้งาน หุ่นยนต์เดินตามเส้น ใช้ IR Sensor หลายตัวติดไว้ใต้หุ่นยนต์เพื่อตรวจจับเส้นสีดำบนพื้นสีขาว หุ่นยนต์หลบสิ่งกีดขวาง ติดตั้งไว้ด้านหน้าหุ่นยนต์เพื่อตรวจจับกำแพงหรือสิ่งของแล้วสั่งให้เลี้ยวหลบ เครื่องนับจำนวนสินค้า ติดตั้งไว้ข้างสายพานลำเลียง เพื่อนับจำนวนสินค้าที่เคลื่อนที่ผ่าน ระบบเปิด-ปิดอัตโนมัติ ใช้ตรวจจับมือหรือวัตถุที่เข้ามาใกล้เพื่อสั่งเปิดก๊อกน้ำ หรือถังขยะ สวิตช์ไร้สัมผัส (Touchless Switch) ใช้แทนปุ่มกด เพื่อลดการสัมผัส เหมาะสำหรับยุคปัจจุบัน ข้อดีของ IR Sensor ราคาถูกมาก หาซื้อง่าย ใช้งานง่าย มีเพียง 3 ขา และโค้ดไม่ซับซ้อน ตอบสนองต่อการเปลี่ยนแปลงได้รวดเร็ว ใช้ได้กับไมโครคอนโทรลเลอร์หลากหลาย เช่น Arduino, ESP8266, ESP32

    25.00 ฿ 17.00 ฿

  • Last stock! Jump Wire Male to Female 20cm. (สายจัมเปอร์)

    Global Pi Shop Jump Wire (Male to Female) 20cm.

    Specification Jump Wire (Male to Female) 20cm. 40 pieces

    49.00 ฿

  • KittenBot IOBIT V2.0 expansion board สำหรับ micro:bit

    Global Pi Shop KittenBot IOBIT V2.0 expansion board for micro:bit

    T his is a low-cos t expansion board for Micro:bit, w hich is specifically used for r the IO ports of Micro:bit. It ha s t a ken a ll the IO r esourc e s on the Micro:bit, and so has a buzzer on the board. It is connected to the P0 pin through the jumper ca p. The P0 pin can be released using a jumper cap. The small size is very suitable for small project s using Micro:bit. Features S m all size, very suitable for DIY A l l IO ports are extracted O n -board buzzer- you can directly use the m us ic module in MakeCode to play mu si c . At the same time, the 3.5mm audio connector on the board can be connected to audio equipm e n t ; such as, headphones to have more creative endeavors. T w o LEGO-compatible pin hole s for easy assembly and in te gr a tion T h e 3 P IN interfac e is distingu ished by yellow , red, and black. It is created so that plugg i ng it in the wro n g way is difficult, and it is convenient to plug in the sensors. I t imi t ates the 5PIN gold fingers on the Micro:bit. This is convenient for ma ke rs w h o like t o use the alligator c lips. C o mpare d with IObit1.0, the biggest differe n ce is t hat it can input and output 5V, support 5V sensor use, and increases the drive capacity (can drive multiple 9g small servos). I ncludes 1A self-recovery fuse C u stom-designed silk screen board Product parameters L e ngth x width x height: 57mmx44mmx12mm Technical parameters P o wer supply mode: Io b itV.2.0 supports USB5V power supply . This power supply m ode requires pr es sing the blue p ower switch . Wo r king voltage: 3V-5V (5V sensor module is n ot s up ported under 3V power supply) Ou t put current: 3V and 5V power interface with maximum output 1A Se r ial port extraction: serial port can map IO port I2 C port leads: pins 19 and 20 can only be u sed as I 2C function pins. They cannot be read and written as ordinary IO ports, because Micro:bit bottom is dead. Sp i port leads; 14, 15 (IO port can be read and written). Pr o gramming: MakeCode/KittenBlock (ba sed on Scratch3.0) wit h h a rdware: M icro:bit. Specifics: It is consi s tent with Micro:bit programming, because IO bi t does not have its own drive chip (except buzzer). The building block that is generally used with IObit is to operate the IO port. Many sensors on the market return a high and low voltage. Flat, or an analog value. For actuators, the microbit needs to output high and low level to control. People who are not familiar with this aspect can s e arch Netease Cloud Classroom: Xiao y an Technology and find the arduino tutorial, which explains h o w to use the commonly used sensors on the market, the principle is the same. W it h common building blocks -> pin Be f ore using the building blocks, you must first understand the control method or reading method of the electronic module you are using. Di g ital reading Mo s t newbies will fall out of here because they often ignore setup pull-ups or pull-downs during initialization. So the level state will fail after reading it once. The re fore, we must pay a ttenti o n to this. Micro:bit itself does not help to set u p and down by default, you need to set it yourself. Ana lo g reading In r esponse to the analog reading, because the analog reading will return a value of 0-1023, it is always inconvenient to display it with a dot matrix screen. So here we take advantage of the unique serial port debugging function of the Make C ode offline version produced by Xiaoyan. First, download the program shown in the figure to open the serial port. In step 2, the console of the device will appear, you can see the data returned in real time. Dig it al writing Digi t al read here does not need to set up and down An a l og write Simul a ted writing an example of a flashing light The m os t commonly used IO port operation is one of these four types. After you master it, you should have no problem with the commonly used sensors on the market. Another thing to note is that the sensors on the market are 5v and 3.3V compatible. But some can only work in 5V. For example, the blue ultrasonic wave that Taobao sells can ordinarily only work in 5V. If IObit is connected, the number read back will always be 0, because the module is not working properly! I ntroduction to IObit hardware: 5V p o w e r Insert the USB power supply (5V 1A) as shown in Figure 1. Press the blue butt o n at 2, and the red indicator light at 3 will light up. You can use the left 5V interface. P0 buzz e r To g gle s witch to tu rn off the buzzer function (see the silk screen on the back of t h e board for status) 3Pin IO por t leads All the pins in the Micro:bit have been taken out without any reservation (Note: there are no P17 and P18 on the Micro:bit, it's not that the IObit is not taken out) Yellow c orresponds to the different IO pins Red cor r esponds to 3.3V/5V (with silkscreen) Black c o rresponds to GND 5PIN go l d fin g ers The gol d f in gers o f the Micr o :b i t are used to draw 3v, gnd, P1, P 2, and P3 respectively. This is for users who prefer to use a lli gator clips 40P Mic r o:bit horizontal socket Compact socket size Board m o unting holes an df i xing Th e two o utermost holes a re approximately 4.8 mm in diame ter and a re compatible with Lego friction p ins with a spacing of 48 mm. 3.5mm au d io interface Y o u can p lug in a 3.5mm jack audio device and play the sound of the P0 pin. IO b it programming use: If you h av en't gotten started with Micro:bit, first get started with Micro:bit, this is the operating premise. Use m us ic bl ocks directly in MakeCode to CQ0056.png P0 pin is If you use P 0 , remember to turn the buzzer toggle switch off (because the buzzer is combined with P0) When using th e Micro:bit power supply, IObit IO port drive capability is very weak, IO port current is less than 200mA, please do not connect high current devices (such as large servo MG995, DC motor), otherwise it will burn out the Micro:bit , you must fully understand before using what the device current conditions needed When using a 5 V external power supply, you can drive multiple small servos, but please note that the maximum current is 1A! If you use the high-low read function of the pin, you must set the pull-down on the pin. If P0 is used as a normal IO port, the buzzer toggle switch must be turned off, otherwise the buzzer will sound or the IO read value will be abnormal. Use the shared pi n with the Micro:bit dot matrix (such as 3, 4, 5, 6, 7, 8, 9, 10, 11), remember to disable the dot matrix screen on the software, otherwise it will be a bit of a screen burst Do not use IO19, 20. 19 and 20 cannot be used as an IO port. Although the display on the MakeCode software can be used, it is actually not used! It can only be used for I2C communication The USB port all ow sa maximum input current of 1A. Do not place it on a met al surface to avoid short circuit

    340.00 ฿

  • Sale -38% โมดูลขับมอเตอร์ L298N สำหรับ Arduino

    Global Pi Shop L298N Motor Driver Module for arduino

    L298N Motor Driver Module คืออะไร? วิธีควบคุมมอเตอร์ด้วย Arduino L298N Motor Driver คือโมดูลขับมอเตอร์ประสิทธิภาพสูงที่นิยมใช้ในโปรเจกต์หุ่นยนต์และระบบควบคุมต่างๆ สามารถใช้ควบคุมความเร็วและทิศทางการหมุนของมอเตอร์กระแสตรง (DC Motor) ได้พร้อมกัน 2 ตัว หรือควบคุม Stepper Motor ได้ 1 ตัว โดยรับคำสั่งจากบอร์ดไมโครคอนโทรลเลอร์ เช่น Arduino หัวใจหลักของโมดูลนี้คือชิป L298N ซึ่งภายในเป็นวงจรแบบ H-Bridge ทำให้สามารถสลับขั้วไฟฟ้าที่จ่ายให้มอเตอร์ได้ ส่งผลให้เราสั่งให้มอเตอร์หมุนเดินหน้าหรือถอยหลังได้อย่างอิสระ สเปคของ L298N ชิปควบคุมหลัก L298N Dual H-Bridge Driver แรงดันสำหรับมอเตอร์ 5V – 35V DC แรงดันลอจิกควบคุม 5V (เหมาะกับ Arduino โดยตรง) กระแสสูงสุดต่อช่อง 2A (ต่อเนื่องแนะนำไม่เกิน 1.5A) จำนวนมอเตอร์ DC Motor 2 ตัว หรือ Stepper Motor 1 ตัว Regulator 5V ในตัว มี (สามารถจ่ายไฟ 5V ให้ Arduino ได้) ช่องอินพุตควบคุม IN1, IN2, IN3, IN4, ENA, ENB ช่องเอาต์พุตมอเตอร์ OUT1, OUT2, OUT3, OUT4 การใช้งานกับ Arduino ✅ การต่อสายควบคุมมอเตอร์ DC 2 ตัว ขาบน L298N หน้าที่ / ต่อกับอะไร ENA ควบคุมความเร็วมอเตอร์ A (ต่อกับขา PWM ของ Arduino เช่น D5) IN1, IN2 ควบคุมทิศทางมอเตอร์ A (ต่อกับขา Digital เช่น D8, D9) ENB ควบคุมความเร็วมอเตอร์ B (ต่อกับขา PWM ของ Arduino เช่น D6) IN3, IN4 ควบคุมทิศทางมอเตอร์ B (ต่อกับขา Digital เช่น D10, D11) OUT1, OUT2 ต่อกับขั้วของมอเตอร์ A OUT3, OUT4 ต่อกับขั้วของมอเตอร์ B 12V (VCC) ต่อกับแหล่งจ่ายไฟสำหรับมอเตอร์ (เช่น แบตเตอรี่ 7V-12V) GND ต่อกับกราวด์ของแหล่งจ่ายไฟมอเตอร์ และต่อร่วมกับ GND ของ Arduino 5V เป็น Output 5V จาก Regulator (เมื่อใส่ Jumper 5V-EN) การใช้งาน Jumper 5V-EN: ใส่ Jumper ไว้ (ค่าเริ่มต้น): เมื่อใช้แหล่งจ่ายไฟมอเตอร์ มากกว่า 7V วงจร Regulator บนบอร์ดจะทำงานและสร้างไฟ 5V ออกมาที่ขา 5V ซึ่งเราสามารถนำไฟนี้ไปเลี้ยงบอร์ด Arduino ได้เลย ถอด Jumper ออก: เมื่อใช้แหล่งจ่ายไฟมอเตอร์ เท่ากับ 5V หรือเมื่อต้องการจ่ายไฟ 5V ให้บอร์ด L298N และ Arduino แยกกัน ✅ ตัวอย่างโค้ดควบคุมมอเตอร์ A โค้ดนี้จะทำให้มอเตอร์ A หมุนไปข้างหน้า 2 วินาที, ถอยหลัง 2 วินาที, และหยุด 2 วินาที วนไปเรื่อยๆ // กำหนดขาสำหรับควบคุมมอเตอร์ A const int ena = 5; // ขา PWM สำหรับควบคุมความเร็ว const int in1 = 8; // ขาควบคุมทิศทาง 1 const int in2 = 9; // ขาควบคุมทิศทาง 2 void setup() { // ตั้งค่าทุกขาเป็น OUTPUT pinMode(ena, OUTPUT); pinMode(in1, OUTPUT); pinMode(in2, OUTPUT); } void loop() { // --- หมุนเดินหน้า --- digitalWrite(in1, HIGH); digitalWrite(in2, LOW); analogWrite(ena, 200); // กำหนดความเร็ว (ค่าระหว่าง 0-255) delay(2000); // --- หมุนถอยหลัง --- digitalWrite(in1, LOW); digitalWrite(in2, HIGH); analogWrite(ena, 150); // ลดความเร็วลง delay(2000); // --- หยุดหมุน --- digitalWrite(in1, LOW); digitalWrite(in2, LOW); // analogWrite(ena, 0); // หรือจะใช้คำสั่งนี้เพื่อหยุดก็ได้ delay(2000); } 🛠️ การประยุกต์ใช้งาน สร้างหุ่นยนต์อัตโนมัติ เช่น หุ่นยนต์หลบหลีกสิ่งกีดขวาง, หุ่นยนต์เดินตามเส้น สร้างรถบังคับวิทยุที่ควบคุมผ่าน Bluetooth หรือ Wi-Fi ระบบควบคุมความเร็วและทิศทางของพัดลม DC โปรเจกต์แขนกลที่ควบคุมด้วย DC Motor หรือ Stepper Motor ระบบเปิด-ปิดประตูหรือหน้าต่างอัตโนมัติ ⭐ ข้อดีของ L298N รองรับแรงดันและกระแสไฟได้สูง เหมาะกับมอเตอร์หลากหลายขนาด ใช้งานง่าย มีไลบรารีและตัวอย่างโค้ดให้ศึกษามากมาย มีวงจร Regulator 5V ในตัว ช่วยลดความซับซ้อนในการจ่ายไฟให้วงจร ราคาถูกและเป็นที่นิยม หาซื้อง่าย

    65.00 ฿ 40.00 ฿

  • Sale -27% เซ็นเซอร์ประตูหน้าต่าง MC-38 Magnetic Contact

    Global Pi Shop Magnetic Door Switch MC-38 Magnetic door switch

    MC-38 Normally Closed <Normally Closed principle is together, the signal is on, with the wired host use can not be used alone> MC-38 is normally closed: the magnet is close to the conduction, the magnet is away from the circuit breaker. MC-38A is normally open: the magnet is close to the closed (disconnected), the magnet is away from the open circuit Action distance: 18mm ± 6mm Lifetime: 1,000,000 times Switching output: often closed (together with the conductive) Open type, suitable for non-ferrous doors or windows Surface mountin

    30.00 ฿ 22.00 ฿

  • สาย Micro HDMI to HDMI 1 เมตร สีดำ

    Global Pi Shop Micro HDMI To HDMI, 1m

    The Official Raspberry Pi HDMI cable is the perfect accessory to compliment your new Raspberry Pi 4 Model B board. This is a micro HDMI to standard HDMI cable which is 1m long and available in black or white. The high-performance Raspberry Pi HDMI cable supports 3D, 4K, 2K, 17.8Gbps, 2160P/60Hz and XVcolour.

    185.00 ฿

  • Micro SD Card Class 10 สำหรับบันทึก 4K

    Global Pi Shop Micro SD Card

    Micro SD Card brand Sandisk The Sandisk microSD card is compatible with Android devices and is designed with an A1 performance rating. The higher speed and capacity means faster app loading, faster photo and video recording. Available in capacities up to 512GB*, the Sandisk microSD card is designed for reliable, high-resolution photography, and full-HD video editing. Sandisk microSD cards are tested to last even in the harshest environments, so you can take them with confidence that your photos, videos, and files are protected. Backed by a lifetime warranty. Micro SD Card Canvas Select Plus Android A1 performance Kingston Canvas Select Plus microSD is compatible with Android devices and is designed with A1 performance. The higher speed and capacity means faster app loading, faster photo and video capture. Available in multiple capacities up to 512GB*, the Canvas Select Plus microSD card is designed for reliable, high-resolution photography, and full-HD video editing. Kingston's Canvas card is tested to last even in the harshest environments, so you can take it with you with confidence that your photos, videos and files will be protected. It's backed by a lifetime warranty.

    230.00 ฿ - 400.00 ฿

  • Sale -40% โมดูล Micro SD Card สำหรับ Arduino

    Global Pi Shop Micro SD Card Module for arduino

    Micro SD Card Module คืออะไร? วิธีบันทึกข้อมูลด้วย Arduino Micro SD Card Module คือโมดูลอิเล็กทรอนิกส์ที่ทำหน้าที่เป็นตัวกลางให้ไมโครคอนโทรลเลอร์ เช่น บอร์ด Arduino สามารถอ่านและเขียนข้อมูลลงบนการ์ด Micro SD ได้โดยตรง ทำให้โปรเจกต์ของเราสามารถจัดเก็บข้อมูลจำนวนมากได้ เช่น ค่าที่อ่านจากเซนเซอร์ต่างๆ, การบันทึกเหตุการณ์ (Event Log), หรือแม้กระทั่งไฟล์รูปภาพและเสียง โมดูลนี้มักจะมีวงจรแปลงระดับแรงดันไฟฟ้า (Logic Level Shifter) ในตัว ทำให้สามารถทำงานกับบอร์ดที่ใช้ไฟ 5V ได้อย่างปลอดภัย และสื่อสารผ่านโปรโตคอลมาตรฐานที่เรียกว่า SPI (Serial Peripheral Interface) สเปคของ Micro SD Card Module แรงดันไฟเลี้ยง 3.3V – 5V (ใช้กับ Arduino ได้โดยตรง) อินเตอร์เฟส SPI (MISO, MOSI, SCK, CS) ความจุที่รองรับ การ์ด Micro SD สูงสุด 32GB (ฟอร์แมตแบบ FAT16 หรือ FAT32) ระดับแรงดันลอจิก มีวงจรแปลงระดับแรงดัน 5V → 3.3V ในตัว ขาเชื่อมต่อ VCC, GND, MISO, MOSI, SCK, CS ประเภทการ์ด รองรับการ์ด Micro SD และ Micro SDHC ขนาดมาตรฐาน การใช้งานกับ Arduino ✅ 1. การต่อสายกับ Arduino Uno ขาบน SD Module ขาบน Arduino Uno หน้าที่ VCC 5V ไฟเลี้ยงโมดูล GND GND กราวด์ MISO Pin 12 Master In Slave Out MOSI Pin 11 Master Out Slave In SCK Pin 13 Serial Clock CS Pin 10 Chip Select (สามารถเปลี่ยนเป็นขาอื่นได้) **สำหรับบอร์ดอื่น เช่น ESP32 หรือ Mega2560, ขา SPI อาจอยู่ตำแหน่งอื่น กรุณาตรวจสอบ Pinout ของบอร์ดที่ใช้งาน ✅ 2. ตัวอย่างโค้ด Arduino (บันทึกข้อความลงการ์ด) โค้ดนี้ใช้ไลบรารี SD.h ที่มาพร้อมกับ Arduino IDE เพื่อเขียนข้อความลงในไฟล์ชื่อ "data.txt" #include <SPI.h> #include <SD.h> // กำหนดขา Chip Select (CS) // หากต่อขา CS ไว้ที่ขาอื่น ให้เปลี่ยนเลขตรงนี้ const int chipSelect = 10; void setup() { // เริ่มการสื่อสารแบบ Serial เพื่อดูสถานะ Serial.begin(9600); Serial.print("Initializing SD card..."); // เริ่มต้นการทำงานของ SD Card if (!SD.begin(chipSelect)) { Serial.println("initialization failed!"); while (1); // วนลูปไม่รู้จบหากหาการ์ดไม่เจอ } Serial.println("initialization done."); // เปิดไฟล์ชื่อ data.txt เพื่อเขียนข้อมูล // FILE_WRITE คือโหมดการเขียน (จะสร้างไฟล์ใหม่หากยังไม่มี) File dataFile = SD.open("data.txt", FILE_WRITE); // ตรวจสอบว่าเปิดไฟล์ได้หรือไม่ if (dataFile) { // เขียนข้อความลงในไฟล์ dataFile.println("Hello, this is a test from Arduino!"); // ปิดไฟล์หลังเขียนเสร็จ dataFile.close(); Serial.println("Data saved successfully."); } else { // หากเปิดไฟล์ไม่ได้ Serial.println("Error opening data.txt"); } } void loop() { // ส่วนนี้จะทำงานวนไปเรื่อยๆ // สามารถนำไปประยุกต์ใช้เพื่อบันทึกค่าจากเซนเซอร์ทุกๆ 5 วินาที เป็นต้น } 📌 การประยุกต์ใช้งาน Data Logger: โปรเจกต์ที่ได้รับความนิยมสูงสุด คือการเก็บข้อมูลจากเซนเซอร์ต่างๆ (เช่น อุณหภูมิ, ความชื้น, GPS) ลงในการ์ดพร้อมประทับเวลา บันทึกเหตุการณ์ (Event Logging): ใช้บันทึกการทำงานของระบบ เช่น เวลาที่ประตูเปิด-ปิด, เวลาที่มีการเคลื่อนไหว, หรือ Error ที่เกิดขึ้น เก็บไฟล์ขนาดใหญ่: ใช้เก็บไฟล์ภาพจากกล้อง (เช่น ESP32-CAM), ไฟล์เสียง (WAV, MP3) สำหรับโปรเจกต์เครื่องเล่นเพลง, หรือไฟล์ตั้งค่าต่างๆ เก็บข้อมูลในรูปแบบมาตรฐาน: บันทึกข้อมูลเป็นไฟล์ CSV หรือ JSON เพื่อนำไปวิเคราะห์ต่อในคอมพิวเตอร์ได้ง่าย ⭐ ข้อดีของโมดูล ง่ายต่อการใช้งานกับ Arduino: มีไลบรารีมาตรฐาน (SD.h) รองรับ ทำให้เขียนโค้ดได้ไม่ซับซ้อน ใช้พลังงานต่ำ: เหมาะสำหรับโปรเจกต์ที่ใช้พลังงานจากแบตเตอรี่ บันทึกข้อมูลได้มหาศาล: เมื่อเทียบกับหน่วยความจำภายในของ Arduino (EEPROM) ที่มีจำกัด เข้าถึงข้อมูลง่าย: สามารถถอด Micro SD Card ไปเสียบกับคอมพิวเตอร์เพื่ออ่านหรือจัดการไฟล์ได้โดยตรง  

    25.00 ฿ 15.00 ฿

  • Micro switch button 6x6x7mm สวิตช์ปุ่มกดขนาดเล็ก

    Global Pi Shop Micro Switch Button 6x6x7mm

    Specification Microswitch, push-on, release-off switch, size 6x6x7mm

    2.00 ฿

  • สาย Micro USB B to USB A Male to Male 1 เมตร สีดำ

    Global Pi Shop Micro USB B to USB A Male to Male Lead, 1m Black

    Specification Micro USB B to USB A Male to Male Lead, 1m Black

    50.00 ฿

  • Sale -75% เซ็นเซอร์ MQ-2 Smoke Gas Sensor สำหรับ Arduino

    Global Pi Shop MQ-2 Smoke Gas Sensor For Arduino

    The MQ-2 sensor is a very popular gas sensor for use with Arduino and other microcontroller boards, and is ideal for home gas or smoke detection projects, such as gas leak alarms. MQ-2 is The MQ-2 is a gas sensor that can detect many types of gases such as: LPG (cooking gas) Butane gas Propane gas Methane gas (CH₄) Hydrogen gas (H₂) Smoke alcohol Inside the sensor is a heating coil and a SnO₂ (tin dioxide) gas detector, whose resistance changes in the presence of gas in the air, allowing it to be converted to an electrical signal. MQ-2 specifications list details Supply voltage 5V DC Electrical power About 800mW Signal type Analog and digital (depending on module) Warm-up time About 20 seconds to 2 minutes Detectable gases LPG, Methane, Alcohol, Propane, Hydrogen, Smoke Detection range Approximately 300 - 10,000 ppm Number of legs 4 legs (VCC, GND, AOUT, DOUT) AOUT (Analog Out) – Analog signal indicating gas level. DOUT (Digital Out) – Digital signal (1 or 0) when gas level exceeds set point. Using MQ-2 with Arduino Wiring: MQ-2 Pin Arduino Pin VCC 5V GND GND AOUT A0 (Analog) DOUT D2 (Digital) (if used) Some MQ-2 modules have a potentiometer (adjuster) to set the threshold level on DOUT. Example code for use in Analog: int mq2Pin = A0; void setup() { Serial.begin(9600); } void loop() { int gasLevel = analogRead(mq2Pin); Serial.print("gasLevel: "); Serial.println(gasLevel); delay(1000); } Example of code for Digital usage: int mq2Digital = 2; void setup() { pinMode(mq2Digital, INPUT); Serial.begin(9600); } void loop() { int gasDetected = digitalRead(mq2Digital); if (gasDetected == LOW) { Serial.println("gas detect!"); } else { Serial.println("Safe"); } delay(1000); }

    100.00 ฿ 25.00 ฿

  • NRF24L01 Module โมดูลสื่อสารไร้สาย 2.4GHz

    Global Pi Shop NRF24L01 Module

    Specification 2.4G NRF24L01 Wireless Transceiver/Receive Module NRF24L01 2.4GHz wireless data transmission module NRF24L01 is a work in the 2.4-2.5GHz worldwide ISM band single-chip transceiver, wireless transceiver, including: the frequency generator the enhanced SchockBurstTM mode controller power amplifier crystal amplifier modulator demodulator output power channel selection and protocol set by the SPI interface to set a very low current consumption, lower current consumption mode 12.3mA Power-down mode and standby mode when in transmit mode emission power 6dBm when current consumption is 9.0mA acceptance model. Ball to open ISM band maximum 0dBm transmit power, license-exempt use. The open 100 meters! Support six channels of data reception (1) low operating voltage: 1.9 ~~ 3.6V low-voltage (2) high-rate: 2Mbps, air transmission time is very short, greatly reducing the wireless transmission of collision phenomena (software settings 1Mbps or 2Mbps air transmission rate) Multi-frequency points: 125 frequency points, to meet the multi-point communications and frequency hopping communications needs 4 ultra-compact: built-in 2.4GHz antenna compact 15x29mm (including antenna) (5) Low power consumption: when in answer mode communication, fast air transmission and start-up time greatly reduces the current consumption. Low application cost: NRF24L01 integrates all RF protocol high-speed signal processing section, such as: automatically resend lost packets and automatically generate an acknowledge signal, etc. the nRF24L01 The SPI interface can take advantage of the microcontroller hardware SPI port or microcontroller I / O port to simulate the internal FIFO can be used with a variety of low-speed microprocessor interface, easy to use low-cost microcontroller. 7 facilitate the development: the link layer is fully integrated in the module, very easy to develop. Automatic retransmission function, automatic detection and retransmission of lost packets, the retransmission time and the number of retransmission can be software-controlled automatic storage is not received the packet of the response signal auto-answer, after the receipt of a valid data, the module automatically sends the reply fixed frequency detection signals without any additional programming Carrier Detect - built-in hardware CRC error detection and point-to-multipoint communication address control packet transmission error counter and carrier detection can be used for frequency hopping set can also set up six to receive the channel address, can have a choice of open receive channel standard the pin Dip2.54MM spacing interfaces for embedded applications.

    39.00 ฿

  • Last stock! บอร์ดพัฒนา NUCLEO-144 STM32F746ZG

    Global Pi Shop NUCLEO-144

    Specification STM32 Nucleo-144 development board with STM32F746ZG MCU, supports Arduino, ST Zio and morpho connectivity

    1,250.00 ฿

  • NVIDIA Jetson Orin Nano 8GB (Support Super Mode) ชุด AI คอมพิวเตอร์

    Global Pi Shop NVIDIA® Jetson™ Orin™ Nano 8GB (Support Super Mode)

    Feature Note The reComputer J3011 is equipped with the same NVIDIA Jetson Orin Nano 8GB production module. You can perform a self - upgrade to Jetpack 6.2 . Once upgraded, you'll instantly experience a significant boost in computing power, with the performance leaping from 40 Tops to 67 Tops , offering capabilities comparable to those of the NVIDIA Jetson Orin Nano Super Developer Kit . For optimal performance with reComputer, we recommend using 128GB / 256GB / 512GB / 1TB SSDs from Seeed. Since some SSDs on the market may only be compatible with specific JetPack versions which may cause the device to fail to function properly , and this issue is also present with official NVIDIA dev kits. If you are looking for the version without power adapter, please check out reComputer J3011 without power adapter reComputer J3011 (original with JP5.1.3) reComputer J3011 ( super with JP6.2 ) GPU NVIDIA Ampere architecture 1,024 CUDA Cores 32 Tensor Cores 635 MHz NVIDIA Ampere architecture 1,024 CUDA Cores 32 Tensor Cores 1,020MHz AI PERF 40 INT8 TOPS (Sparse) 20 INT8 TOPS (Dense) 67 TOPS (Sparse) 33 TOPS (Dense) CPU 6-core Arm Cortex- A78AE v8.264-bit CPU 1.5 GHz 6-core Arm Cortex- A78AE v8.264-bit CPU 1.7 GHz Memory 8GB 128-bit LPDDR5 68GB/s 8GB 128-bit LPDDR5 102GB/s POWER MODULE 7W|15W 10W|15W| 25W Specification Jetson Orin Nano System on Module AI Performance reComputer J 3011 - Orin N ano 8 GB, up to 67 TOPS reComputer J3010- Orin Nano 4GB – up to 34 TOPS GPU 1024-core NVIDIA Ampere architecture GPU with 32 Tensor Cores (Orin Nano 8GB) 512-core NVIDIA Ampere architecture GPU with 16 Tensor Cores (Orin Nano 4GB) CPU 6-core Arm® Cortex®-A78AE v8.2 64-bit CPU 1.5MB L2 + 4MB L3 Memory 8GB 128-bit LPDDR5 68 GB/s (Orin Nano 8GB) 4GB 64-bit LPDDR5 34 GB/s (Orin Nano 4GB) Video Encoder 1080p30 supported by 1-2 CPU cores Video Decoder 1x 4K60 (H.265) | 2x 4K30 (H.265)  | 5x 1080p60 (H.265)  | 11x 1080p30 (H.265) Carrier Board Storage 1x M.2 Key M PCIe (M.2 NVMe 2280 SSD 128G included) Networking Ethernet 1x RJ-45 Gigabit Ethernet (10/100/1000M) M.2 KEY E 1x M.2 Key E(pre-installed 1x Wi-Fi/Bluetooth combo module) I/O USB 4x USB 3.2 Type-A (10Gbps) , 1x USB2.0 Type-C (Device Mode) Camera 2x CSI (2-lane 15pin) Display 1x HDMI 2.1 Fan 1x 4 pin Fan Connector (5V PWM) CAN 1x CAN Multifunctional Port 1x 40-Pin Expansion header 1x 12-Pin Control and UART header RTC 1x RTC 2-pin , supports CR1220 but not included Power 9-19V DC Mechanical Dimensions (W x D x H) 130mm x 120mm x 58.5mm (with case) Installation Desk, wall-mounting Operating Temperature -10℃~60℃ Warranty 1 Year Hardware Overview reComputer J401 carrier board , included in the full system - reComputer J3011 ● Desktop, Wall Mount, Expandable, or Fit in Anywhere Application Application Fields: AI Video Analytics Machine Vision Autonomous Mobile Robot (AMR) Generative AI ● Capable of Bringing Generatie AI to the Edge Now you can build AI agents capable of processing large amounts of live or archived videos and images with Vision-Language Models (VLM) such as LLaVA, this new AI agents help nearly every industry summarize, search, and extract actionable insights from video using natural language. ● Build Multi-streams AI Video Analytics For building video analytics, Jetson Orin Nano incorporates the NVIDIA Multi-Standard Video Decoder. This video decoder accelerates video decode, supporting low resolution mobile content, Standard Definition (SD), High Definition (HD) and UltraHD (8K, 4K, etc.) reComputer J3011 can take 13x1080p30 streams. See our tested YOLOv8 performance using NVIDIA Deepstream of single model and multi model on multi streams . ● Fastest Way to Deploy Generative AI and Computer Vision Models We have jetson-example Prepared for you! It offers one-line deploy projects edge AI applications of generative AI including Ollama, Llama3; computer vision including YOLOv8; and others . We have configured all environment for you to provide single command deployment of projects.

    31,000.00 ฿

  • Sale -25% จอแสดงผล OLED I2C ขนาดเล็ก

    Global Pi Shop OLED i2c for Arduino

    OLED I2C คืออะไร? วิธีใช้งานกับ Arduino OLED (Organic Light-Emitting Diode) คือเทคโนโลยีจอแสดงผลที่แต่ละพิกเซลสามารถเปล่งแสงได้ด้วยตัวเอง โดยใช้หลอด LED ขนาดเล็กจำนวนมากในการสร้างภาพ ทำให้ไม่ต้องอาศัยไฟส่องสว่างจากด้านหลัง (Backlight) เหมือนจอ LCD ทั่วไป ผลลัพธ์ที่ได้คือภาพที่คมชัด มี Contrast สูง และประหยัดพลังงานกว่า สำหรับงาน DIY กับ Arduino จอ OLED มักจะมาในรูปแบบโมดูลขนาดเล็ก (เช่น 0.96 นิ้ว หรือ 1.3 นิ้ว) และนิยมใช้การสื่อสารแบบ I2C (Inter-Integrated Circuit) ซึ่งใช้สายสัญญาณเพียง 2 เส้น (SDA และ SCL) ทำให้การต่อวงจรนั้นง่ายและประหยัดขาของไมโครคอนโทรลเลอร์อย่างมาก สเปคของ OLED I2C Module (0.96 นิ้ว) ขนาดจอ 0.96 นิ้ว (หรือ 1.3 นิ้ว) ความละเอียด 128x64 พิกเซล (หรือ 128x32) สีที่แสดง โมโนโครม (ส่วนใหญ่เป็นสีขาว, ฟ้า, หรือเหลือง) แรงดันไฟเลี้ยง 3.3V – 5V (ใช้กับ Arduino ได้โดยตรง) โปรโตคอลสื่อสาร I2C (ขา SDA / SCL) ชิปควบคุมจอ SSD1306 (เป็นรุ่นที่นิยมที่สุด) จำนวนขา 4 ขา: VCC, GND, SDA, SCL กระแสที่ใช้ น้อยมาก (ประมาณ 20mA) การใช้งานกับ Arduino การเริ่มต้นใช้งานจอ OLED กับ Arduino มี 3 ขั้นตอนหลักๆ คือ ติดตั้งไลบรารี, ต่อสาย, และอัปโหลดโค้ด ✅ 1. การติดตั้งไลบรารี (Library Installation) ก่อนจะเขียนโค้ดได้ เราต้องติดตั้งไลบรารีที่จำเป็นก่อนผ่านโปรแกรม Arduino IDE: ไปที่เมนู Tools > Manage Libraries... ในช่องค้นหา พิมพ์ "Adafruit SSD1306" แล้วกด Install โปรแกรมจะถามให้ติดตั้งไลบรารีที่เกี่ยวข้อง (Dependencies) คือ "Adafruit GFX Library" ให้กด Install all ✅ 2. การต่อสาย (กับ Arduino Uno/Nano) ขาบนจอ OLED ต่อกับขาบน Arduino VCC 5V GND GND SDA A4 SCL A5 (หมายเหตุ: หากใช้บอร์ดรุ่นอื่น เช่น ESP8266/ESP32 ตำแหน่งของขา SDA/SCL อาจแตกต่างออกไป กรุณาตรวจสอบ Pinout ของบอร์ดนั้นๆ) ✅ 3. ตัวอย่างโค้ดแสดงข้อความ โค้ดนี้จะแสดงคำว่า "Hello!" บนจอ OLED: #include <Wire.h> #include <Adafruit_GFX.h> #include <Adafruit_SSD1306.h> // กำหนดขนาดจอ #define SCREEN_WIDTH 128 #define SCREEN_HEIGHT 64 // สร้าง object ของจอ โดยระบุขนาดและขา I2C // -1 หมายถึงใช้ขา Reset ของ Hardware Adafruit_SSD1306 display(SCREEN_WIDTH, SCREEN_HEIGHT, &Wire, -1); void setup() { Serial.begin(9600); // เริ่มต้นการทำงานของจอ ที่ I2C address 0x3C if (!display.begin(SSD1306_SWITCHCAPVCC, 0x3C)) { Serial.println(F("SSD1306 allocation failed")); for (;;); // วนลูปไม่รู้จบหากหาจอไม่เจอ } // ล้างค่าในหน้าจอ display.clearDisplay(); // ตั้งค่าการแสดงผล display.setTextSize(2); // ขนาดตัวอักษร display.setTextColor(SSD1306_WHITE); // สีตัวอักษร display.setCursor(0, 10); // ตำแหน่งเริ่มต้น (x, y) // พิมพ์ข้อความลงใน buffer display.println("Hello!"); // แสดงผลจาก buffer ออกมาที่หน้าจอจริง display.display(); } void loop() { // ไม่ต้องทำอะไรใน loop เพราะข้อความจะค้างอยู่บนจอ } หมายเหตุ: I2C Address ของจอ OLED ส่วนใหญ่คือ 0x3C แต่บางรุ่นอาจเป็น 0x3D หากโค้ดไม่ทำงาน ให้ลองเปลี่ยนค่าในบรรทัด display.begin(...) ดู การประยุกต์ใช้งาน แสดงค่าที่อ่านได้จากเซนเซอร์ต่างๆ เช่น อุณหภูมิ, ความชื้น, คุณภาพอากาศ (ค่าฝุ่น PM2.5) ใช้เป็นหน้าจอสำหรับสร้างเมนู เพื่อควบคุมการทำงานของโปรเจกต์ แสดงสถานะการทำงานของระบบ เช่น สถานะการเชื่อมต่อ Wi-Fi, IP Address, หรือข้อความแจ้งเตือน สร้างนาฬิกาดิจิทัล, ตัวนับเวลา, หรือสกอร์บอร์ดขนาดเล็ก ข้อดีของ OLED I2C ภาพคมชัดมาก: เนื่องจากแต่ละพิกเซลเปล่งแสงเอง ทำให้มี Contrast สูง ตัวหนังสือคมชัดแม้มองในที่มืด ประหยัดพลังงาน: เพราะไม่ต้องใช้ไฟ Backlight เหมือนจอ LCD พิกเซลสีดำคือการ "ไม่เปล่งแสง" จึงกินไฟน้อยมาก ใช้สายน้อย: การสื่อสารแบบ I2C ใช้เพียง 2 เส้น (SDA, SCL) ทำให้เหลือขา GPIO ของ Arduino ไปใช้งานกับอุปกรณ์อื่นได้อีกเยอะ

    80.00 ฿ 60.00 ฿

  • Sale -32% บอร์ด Orange Pi 4 LTS Mini Computer

    Global Pi Shop Orange pi 4 LTS

    1. Orange Pi is a small computer board with many capabilities, suitable for those who want to create projects that require high performance but want to keep a budget. 2. With its meticulous design and best value, Orange Pi is a price you shouldn't miss. You can choose from a variety of models to suit your needs, including WiFi, Ethernet, USB, HDMI, and more. 3. With the capabilities of Orange Pi, you can use it in many ways, such as a server, display, receiver or a small computer board to create various projects. 4. Whether you are a software developer or a coder, you can use Orange Pi to help you develop programs efficiently and save time. 5. We have nationwide shipping and a quality team to provide full service to our customers. So don't wait, buy Orange Pi from us today!

    4,150.00 ฿ 2,815.00 ฿

  • Sale -41% บอร์ด Orange Pi 4B

    Global Pi Shop Orange pi 4B

    Orange Pi 4B is an open-source single-board computer with dual-band wireless WiFi and Bluetooth 5.0 .It is highly compact with a dimension of 91X55.7mm. Orange Pi 4B uses the Allwinner H6 SoC, and has 2GB LPDDR3 SDRAM, 8GB EMMC Flash. It can run Android 9,Ubuntu,Debian. Orange Pi 4B offers a range of different ports, including HDMI output, 26pin headers, Gbps Ethernet port,1*USB 3.0, 2* USB2.0,etc. It is powered through Type-C. It is a good choice for applications that need strong networking perfomance. Hardware specifications CPU • Rockchip RK3399 (28nm HKMG process) • 6-core ARM® 64-bit processor ,main frequency speeds up to 1.8GHz • Based on the large and small size core architecture of big.LITTLE : • Dual-core Cortex-A72 (large core) + Quad-core Cortex-A53 (small core) GPU • Mali-T864 GPU • Supports OpenGL ES1.1/2.0/3.0/3.1, OpenVG1.1,OpenCL, DX11, support AFBC. NPU • SPR2801S, adopt MPE and APiM unique AI architecture. • Typical calculation power 2.8Tops, with 9.3Tops/W ultra high performance Memory+Onboard Storage Dual 4GB LPDDR4 + 16GB EMMC flash Onboard WiFi+Bluetooth AP6256, IEEE 802.11 a/b/g/n/ac, BT5.0 Network 10/100/1000Mbps Ethernet ( Realtek RTL8211E ) Audio • Output: 3.5mm Jack and HDMI2.0a • Input: MIC Video Outputs • 1 x HDMI 2.0 ( Type-A ), Supports 4K@60fps output • 1 x DP 1.2 (Display Port) , Supports 4K@60fps output • Supports Dual MIPI-DSI (4 lines per channel) Camera 2 x MIPI-CSI(MIPI_RX0、MIPI_TX1/RX1) USB 2 x USB2.0 HOST,1 x USB3.0 Type-C RTC Support RTC, on-board battery backup interface Debug UART 3pins Debug UART GPIO • GPIO1 40 pins(1 x I2S、2 x I2C、1 x SPI/UART、8 x GPIO) • GPIO2 24pin PCIE port Key Upgrade Key & Reset Key Power Source DC 5V/3A, TYPE-C 5V/3A LED Power led & Status led OS Support Android 8.1、Ubuntu 16.04、Ubuntu 18.04、Debian 9 PCB 8 Layer Dimension 91mm*55.7mm

    6,590.00 ฿ 3,890.00 ฿

  • Orange Pi PC พร้อมเคสใส (Clear Case)

    Global Pi Shop Orange Pi PC + Clear Case

    Orange Pi PC It is an easy-to-use mini-PC that anyone can use, whether they are a beginner or an expert. It can be used to start simple projects and even to be used in the industrial sector. It can also install many OSes, such as Android, Ubuntu, Debian. Orange Pi PC is for anyone who wants to start creating with technology- not just consuming it. lt's a simple, fun, useful tool that you can use to start taking control of the world around you. Hardware specifications CPU H3 Quad-core Cortex-A7 H.265/HEVC 4K GPU • Mali400MP2 GPU @600MHz • Supports OpenGL ES 2.0 Memory (SDRAM) 1GB DDR3 (shared with GPU) Onboard Storage TF card (Max. 32GB) / MMC card slot Onboard Network 10/100M Ethernet RJ45 Video Input • A CSI input connector Camera: • Supports 8-bit YUV422 CMOS sensor interface. • Supports CCIR656 protocol for NTSC and PAL. • Supports SM pixel camera sensor. • Supports video capture solution up to 1080p@30fps Audio Input MIC Video Outputs • Supports HDMI output with HDCP. • Supports HDMI CEC • Supports HDMI 30 function • Integrated CVBS • Supports simultaneous output of HDMI and CVBS. Audio Output 3.5 mm Jack and HDMI Power Source DC input can supply power, but USB OTG input don't supply power USB 2.0 Ports Three USB 2.0 HOST, one USB 2.0 OTG Buttons Power Button(SW4) Low-level peripherals 40 Pins Header GPIO(1x3) pin UART, ground. LED Power led & Status led Key IR input, POWER Supported OS Android Ubuntu, Debian Image   Product display

    1,140.00 ฿

  • Orange Pi PC Plus Mini PC

    Global Pi Shop Orange Pi PC Plus

    Orange Pi PC+ An easy-to-use mini-PC that anyone can use, whether they are a beginner or an expert. It can be used to start simple projects and even be used in the industrial sector. It can also install many OSes, such as Android, Ubuntu, Debian. Orange Pi PC+ is for anyone who wants to start creating with technology- not just consuming it. lt's a simple, fun, useful tool that you can use to start taking control of the world around you. Hardware specifications CPU H3 Quad-core Cortex-A7 H.265/HEVC 4K GPU • Mali400MP2 GPU @600MHz • Supports OpenGL ES 2.0 Memory (SDRAM) 1GB DDR3 (shared with GPU) Onboard Storage TF card (Max. 32GB) / MMC card slot Onboard Network 10/100M Ethernet RJ45 Video Input • A CSI input connector Camera: • Supports 8-bit YUV422 CMOS sensor interface. • Supports CCIR656 protocol for NTSC and PAL. • Supports SM pixel camera sensor. • Supports video capture solution up to 1080p@30fps Audio Input MIC Video Outputs • Supports HDMI output with HDCP. • Supports HDMI CEC • Supports HDMI 30 function • Integrated CVBS • Supports simultaneous output of HDMI and CVBS. Audio Output 3.5 mm Jack and HDMI Power Source DC input can supply power, but USB OTG input don't supply power USB 2.0 Ports Three USB 2.0 HOST, one USB 2.0 OTG Buttons Power Button(SW4) Low-level peripherals 40 Pins Header GPIO(1x3) pin UART, ground. LED Power led & Status led Key IR input, POWER Supported OS Android Ubuntu, Debian Image   Product display

    1,309.00 ฿

  • Sale -44% Orange Pi PC Plus พร้อมอะแดปเตอร์จ่ายไฟ

    Global Pi Shop Orange PI PC plus + Adapter

    Orange Pi PC Plus is an open-source single-board computer .It uses the Allwinner H3 SoC with Quad-core Cortex-A7, has 1GB LPDDR3 SDRAM, and can run Android 4.4, Ubuntu, Debian Image. Hardware specifications CPU H3 Quad-core Cortex-A7 H.265/HEVC 4K GPU • Mali400MP2 GPU @600MHz • Supports OpenGL ES 2.0 Memory (SDRAM) 1GB DDR3 (shared with GPU) Onboard Storage • TF card (Max. 32GB) • 8GB eMMC Flash Onboard Network 10/100 Ethernet RJ45 Video Input • A CSI input connector camera: • Supports 8-bit YUV422 CMOS sensor interface. • Supports CCIR656 protocol for NTSC and PAL. • Supports SM pixel camera sensor. • Supports video capture solution up to 1080p@30fps Audio Input MIC Video Outputs • Supports HDMI output with HDCP. • Supports HDMI CEC • Supports HDMI 30 function • Integrated CVBS • Supports simultaneous output of HDMI and CVBS. Audio Output 3.5 mm Jack and HDMI Power Source DC input, USB OTG input don't supply power USB 2.0 Ports Three USB 2.0 HOST, one USB 2.0 OTG Buttons Power button Low-level peripherals 40 Pins Header GPIO(1x3) pin UART, Ground. LED Power led & Status led Key IR input,Power Supported OS Android Lubuntu, Debian Image Interface definition Product size 85 mm × 55 mm Weight 70g

    2,500.00 ฿ 1,390.00 ฿

  • Sale -27% หน้าจอสัมผัส Orange Pi Touch Screen ขนาด 10.1 นิ้ว

    Global Pi Shop Orange Pi Touch Screen (For Orange Pi 4/4B/4 LTS/5)

    The official and recommended touch screen for Orange Pi 4/4B/4 LTS/5 Product description 10.1" screen including TFT LCD and capacitive touch screen, hardware resolution is 800x1280 Support screen brightness control by software PWM Refresh rate up to 60Hz through MIPI DSI interface driver Support Orange Pi 4/4B/4 LTS/5 development board, need to use with adapter board. Parameter ltem Specification Unit Panel Size 10.1" inch Number of Pixels 800×RGB (3)×1280 pixels Active Area 135.36(H)x216.576(V) mm Outline Dimension 143(W)×228.6(H)×2.7(D) mm Number of Colors 16.7M Viewing Direction ALL Luminance (cd/m^2) 250(TYP.) nit Interface MIPI Backlight 27-LEDs (White) Operation Temperature 0~50 °C Storage Temperature -10~60 °C Weight TBD g Source IC ILI9881C

    3,000.00 ฿ 2,200.00 ฿

  • Pin Header Single Row 40 Pin หัวตรงตัวผู้

    Global Pi Shop Pin Header Single Row 40 Pin

    Specification Pin Header Single Row Pin Male Header Fishbone 1x40 Pin 2.54 mm Pin Header Single Row Pin Male Header

    20.00 ฿

  • Sale -38% เซ็นเซอร์ตรวจจับความเคลื่อนไหว PIR HC-SR501

    Global Pi Shop PIR HC-SR501 motion sensor for arduino

    PIR Sensor HC-SR501 คืออะไร? วิธีใช้งานกับ Arduino HC-SR501 คือเซนเซอร์ตรวจจับการเคลื่อนไหว (Motion Sensor) ที่นิยมใช้กันอย่างแพร่หลาย ทำงานโดยใช้หลักการของ PIR (Passive Infrared) ซึ่งหมายถึงเป็นเซนเซอร์ที่คอย "รับ" หรือ "ดักจับ" รังสีอินฟราเรดที่แผ่ออกมาจากวัตถุที่มีความร้อน เช่น ร่างกายของมนุษย์หรือสัตว์ โดยตัวมันเองไม่ได้ปล่อยรังสีใดๆ ออกไป เมื่อมีคนหรือสัตว์เคลื่อนที่ผ่านหน้าเซนเซอร์ จะทำให้ปริมาณรังสีอินฟราเรดที่ตกกระทบมีการเปลี่ยนแปลงอย่างรวดเร็ว วงจรภายในจะตรวจจับการเปลี่ยนแปลงนี้และส่งสัญญาณลอจิก "HIGH" ออกมา เพื่อแจ้งให้ไมโครคอนโทรลเลอร์ทราบว่า "มีการเคลื่อนไหวเกิดขึ้น" สเปคของ HC-SR501 แรงดันใช้งาน 4.5V – 20V DC (ใช้กับ 5V ของ Arduino ได้เลย) แรงดันลอจิกเอาต์พุต 3.3V (แต่เพียงพอสำหรับขา Digital ของ Arduino อ่านค่า HIGH ได้) กระแสที่ใช้ ~50 μA (ประหยัดพลังงานมาก เหมาะกับงานแบตเตอรี่) ระยะตรวจจับ ปรับได้ประมาณ 3 ถึง 7 เมตร (ปรับด้วย Potentiometer สีส้ม) มุมตรวจจับ ประมาณ 120 องศา (รูปกรวย) เวลาหน่วง (Delay Time) ปรับได้ประมาณ 0.3 วินาที ถึง 5 นาที (ปรับด้วย Potentiometer สีส้ม) โหมดการทำงาน ปรับได้ 2 โหมด ด้วย Jumper บนบอร์ด การปรับโหมดการทำงาน (สำคัญมาก) บนบอร์ดจะมี Jumper ให้เลือกโหมดได้ 2 แบบ: Repeatable (H): หาก Jumper อยู่ตำแหน่ง H (ค่าเริ่มต้น) เซนเซอร์จะส่งสัญญาณ HIGH "ตลอดเวลา" ที่ยังคงตรวจจับการเคลื่อนไหวได้ และจะเริ่มนับเวลาหน่วงใหม่ทุกครั้งที่เจอการเคลื่อนไหวซ้ำ (เหมาะกับไฟอัตโนมัติ) Non-Repeatable (L): หาก Jumper อยู่ตำแหน่ง L เซนเซอร์จะส่งสัญญาณ HIGH เพียง "ครั้งเดียว" ตามเวลาหน่วงที่ตั้งไว้ แม้จะยังมีการเคลื่อนไหวอยู่ก็ตาม จากนั้นจะส่ง LOW และรอสักครู่ก่อนจะเริ่มตรวจจับใหม่ (เหมาะกับระบบเตือนภัย) การใช้งานกับ Arduino ✅ การต่อสายกับ Arduino ขาบน HC-SR501 ต่อกับขาบน Arduino VCC 5V GND GND OUT ขา Digital ใดก็ได้ (เช่น D2) ✅ ตัวอย่างโค้ด Arduino (ตรวจจับการเคลื่อนไหว) โค้ดนี้จะอ่านค่าจาก PIR Sensor และเมื่อตรวจพบการเคลื่อนไหว จะสั่งให้ LED บนบอร์ด (ขา 13) ติดสว่าง // กำหนดขาที่เชื่อมต่อ const int pirPin = 2; // ขาที่รับสัญญาณจาก OUT ของ PIR Sensor const int ledPin = 13; // ขา LED Build-in บนบอร์ด Arduino void setup() { pinMode(pirPin, INPUT); // กำหนดให้ขา pirPin เป็น Input pinMode(ledPin, OUTPUT); // กำหนดให้ขา ledPin เป็น Output Serial.begin(9600); // เริ่มการสื่อสารแบบ Serial Serial.println("PIR Motion Sensor Test"); } void loop() { // อ่านค่าสถานะจาก PIR Sensor int motionState = digitalRead(pirPin); // ตรวจสอบสถานะ if (motionState == HIGH) { digitalWrite(ledPin, HIGH); // เปิด LED Serial.println("ตรวจพบการเคลื่อนไหว!"); } else { digitalWrite(ledPin, LOW); // ปิด LED Serial.println("สถานะปกติ..."); } // หน่วงเวลาเพื่อลดการแสดงผลที่เร็วเกินไป delay(500); } 💡 การประยุกต์ใช้งาน โปรเจกต์ รายละเอียดการใช้งาน ระบบเตือนภัยบุกรุก ส่งเสียงเตือนหรือแจ้งเตือนผ่าน Line เมื่อมีคนเดินผ่านในบริเวณที่กำหนด ไฟทางเดิน/ห้องน้ำอัตโนมัติ เปิดไฟเมื่อมีคนเดินเข้ามาในพื้นที่ และปิดไฟเมื่อไม่พบการเคลื่อนไหวแล้ว ระบบบ้านอัจฉริยะ ใช้เป็นตัวกระตุ้น (Trigger) เพื่อสั่งงานอุปกรณ์อื่น เช่น เปิดแอร์, เปิดพัดลม เมื่อมีคนอยู่ในห้อง กล้องวงจรปิดอัจฉริยะ สั่งให้ ESP32-CAM หรือกล้องอื่นเริ่มบันทึกภาพเมื่อตรวจพบการเคลื่อนไหว ระบบประหยัดพลังงาน ใช้ปลุกไมโครคอนโทรลเลอร์ (เช่น ESP32) จากโหมด Deep Sleep เมื่อมีคนเข้ามาใกล้ ⭐ ข้อดีของ HC-SR501 ใช้งานง่าย: มีเพียง 3 ขา และให้สัญญาณเป็น Digital ทำให้เขียนโค้ดไม่ซับซ้อน ประหยัดพลังงานมาก: ใช้กระแสไฟน้อยมากในสถานะสแตนด์บาย เหมาะกับงานที่ใช้แบตเตอรี่ ปรับแต่งได้: สามารถปรับระยะการตรวจจับและเวลาหน่วงได้ตามความต้องการของโปรเจกต์ เข้ากันได้ดี: ทำงานได้กับ Arduino, ESP8266, ESP32, และ Raspberry Pi

    65.00 ฿ 40.00 ฿

  • โปรเจกต์ LLMs บน Raspberry Pi 5

    Global Pi Shop Project LLMs on the Raspberry Pi 5

    This project is an example of using Large Language Models (LLMs) on the Raspberry Pi 5, a small but very powerful development device. The Raspberry Pi 5's capabilities are greatly increased from its predecessor, allowing for better AI and machine learning processing. In this project, we will develop and optimize LLMs for this small but powerful hardware, opening up new possibilities for low-power and energy-efficient Natural Language Processing (NLP) for developers who want to test and implement AI anytime, anywhere. code product NF68465 SD Card 32GB NF78136 Raspberry pi 5 Active Cooler F89045 Raspberry pi 5 4GB F91476 Raspberry pi AI Kit NF57326 micro hdmi to hdmi F89047 Raspberry pi 5 Adapter F89048 Raspberry pi 5 Case NF73397 Flash Drive 128 GB

    7,150.00 ฿

  • โปรเจกต์ OCR Raspberry Pi 5 8GB

    Global Pi Shop Project OCR Raspberry Pi 5 8GB

    This project will take you into the world of OCR (Optical Character Recognition) technology on Raspberry Pi 5 Model 8GB with a powerful AI Kit, perfect for converting photo documents into digital text quickly and accurately. The Raspberry Pi 5 is powerful enough to process AI, making OCR possible on such a small but powerful device. This project is perfect for those who want to automatically convert paper data to digital within an affordable budget, with complete instructions on how to install and use it. code product NF68465 SD Card 32GB F89049 Raspberry pi 5 Active Cooler F89046 Raspberry pi 5 8GB F91476 Raspberry pi AI Kit NF57326 micro hdmi to hdmi F89047 Raspberry pi 5 Adapter F89048 Raspberry pi 5 Case F91830 Raspberry pi Camera F91747 FPC Camera Cable

    7,750.00 ฿

  • โปรเจกต์ Raspberry Pi IoT Server InfluxDB MQTT Grafana Node-RED

    Global Pi Shop Project Raspberry Pi IoT Server InfluxDB, MQTT, Grafana, Node-RED

    This project will guide you to build a smart IoT Server with Raspberry Pi that supports InfluxDB, MQTT, Grafana and Node-RED, allowing you to easily connect and manage your IoT devices. The Raspberry Pi becomes the central hub for collecting sensor data via InfluxDB and displaying it in real time with Grafana, while MQTT enables efficient communication between devices and Node-RED makes it easy to create workflows. It is ideal for those who want to set up an IoT system on a budget but want high performance. code product NF68465 SD Card 32GB NF65047 Heat Sink for pi3,pi4,Opi F80094 Raspberry pi 4 4GB NF57326 micro hdmi to hdmi NF57325 Raspberry pi 4 adapter F74050 Raspberry pi 4 Case

    3,750.00 ฿

© 2025 บริษัท โกลบอลโทรนิค อินเตอร์เทรด จํากัด, Powered by Shopify

  • PayPal

Login

Forgot your password?

Don't have an account yet?
Create account