TF MINI 12MM LIDAR

  • 📡 TF Mini LiDAR distance sensor (12mm size)
  • 📏 Accurate distance measurement using laser ranging
  • ⚡ Fast response—great for real-time obstacle detection
  • 🚌 Supports UART/I2C communication (model dependent)
  • 🤖 Ideal for drones, robots, mapping, and collision avoidance
  • 📦 Compact 12mm form factor—easy to mount in tight spaces
  • 🔋 Low power operation for portable applications
  • ✅ Reliable ranging sensor for embedded and IoT projects
SKU: EK1301 Category: Tag:

Apple Shopping Event

Hurry and get discounts on all Apple devices up to 20%

2.550,00 EGP

8 People watching this product now!

Payment Methods:

Description

🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
TF MiniVCC/GND/RX/TX5V / GND / board TX pin / board RX pin
📟
TF MINI 12MM LIDAR
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
TF MINI 12MM LIDAR - Arduino Uno
TF MINI 12MM LIDAR - Arduino Nano
TF MINI 12MM LIDAR - Arduino Mega
TF MINI 12MM LIDAR - ESP32
TF MINI 12MM LIDAR - ESP8266
TF MINI 12MM LIDAR - STM32
TF MINI 12MM LIDAR - Raspberry Pi Pico
📄 File: tf_mini_12mm_lidar_-_arduino_uno.inoArduino Uno
501 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RX=2, TX=3 on Arduino Uno
6#include <SoftwareSerial.h>
7SoftwareSerial LIDAR_SERIAL(2, 3);
8
9#include <TFMPlus.h>
10
11TFMPlus tfmini;
12
13void setup() {
14 Serial.begin(115200);
15 LIDAR_SERIAL.begin(115200);
16 tfmini.begin(&LIDAR_SERIAL);
17}
18
19void loop() {
20 int16_t distanceCm, strength, tempC;
21 if (tfmini.getData(distanceCm, strength, tempC)) {
22 Serial.print("Distance: "); Serial.print(distanceCm); Serial.println(" cm");
23 }
24 delay(100);
25}
📄 File: tf_mini_12mm_lidar_-_arduino_nano.inoArduino Nano
502 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RX=2, TX=3 on Arduino Nano
6#include <SoftwareSerial.h>
7SoftwareSerial LIDAR_SERIAL(2, 3);
8
9#include <TFMPlus.h>
10
11TFMPlus tfmini;
12
13void setup() {
14 Serial.begin(115200);
15 LIDAR_SERIAL.begin(115200);
16 tfmini.begin(&LIDAR_SERIAL);
17}
18
19void loop() {
20 int16_t distanceCm, strength, tempC;
21 if (tfmini.getData(distanceCm, strength, tempC)) {
22 Serial.print("Distance: "); Serial.print(distanceCm); Serial.println(" cm");
23 }
24 delay(100);
25}
📄 File: tf_mini_12mm_lidar_-_arduino_mega.inoArduino Mega
470 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RX=19, TX=18 on Arduino Mega
6#define LIDAR_SERIAL Serial1
7
8#include <TFMPlus.h>
9
10TFMPlus tfmini;
11
12void setup() {
13 Serial.begin(115200);
14 LIDAR_SERIAL.begin(115200);
15 tfmini.begin(&LIDAR_SERIAL);
16}
17
18void loop() {
19 int16_t distanceCm, strength, tempC;
20 if (tfmini.getData(distanceCm, strength, tempC)) {
21 Serial.print("Distance: "); Serial.print(distanceCm); Serial.println(" cm");
22 }
23 delay(100);
24}
📄 File: tf_mini_12mm_lidar_-_esp32.inoESP32
463 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RX=16, TX=17 on ESP32
6#define LIDAR_SERIAL Serial1
7
8#include <TFMPlus.h>
9
10TFMPlus tfmini;
11
12void setup() {
13 Serial.begin(115200);
14 LIDAR_SERIAL.begin(115200);
15 tfmini.begin(&LIDAR_SERIAL);
16}
17
18void loop() {
19 int16_t distanceCm, strength, tempC;
20 if (tfmini.getData(distanceCm, strength, tempC)) {
21 Serial.print("Distance: "); Serial.print(distanceCm); Serial.println(" cm");
22 }
23 delay(100);
24}
📄 File: tf_mini_12mm_lidar_-_esp8266.inoESP8266
501 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RX=D7, TX=D8 on ESP8266
6#include <SoftwareSerial.h>
7SoftwareSerial LIDAR_SERIAL(D7, D8);
8
9#include <TFMPlus.h>
10
11TFMPlus tfmini;
12
13void setup() {
14 Serial.begin(115200);
15 LIDAR_SERIAL.begin(115200);
16 tfmini.begin(&LIDAR_SERIAL);
17}
18
19void loop() {
20 int16_t distanceCm, strength, tempC;
21 if (tfmini.getData(distanceCm, strength, tempC)) {
22 Serial.print("Distance: "); Serial.print(distanceCm); Serial.println(" cm");
23 }
24 delay(100);
25}
📄 File: tf_mini_12mm_lidar_-_stm32.inoSTM32
466 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RX=PA10, TX=PA9 on STM32
6#define LIDAR_SERIAL Serial1
7
8#include <TFMPlus.h>
9
10TFMPlus tfmini;
11
12void setup() {
13 Serial.begin(115200);
14 LIDAR_SERIAL.begin(115200);
15 tfmini.begin(&LIDAR_SERIAL);
16}
17
18void loop() {
19 int16_t distanceCm, strength, tempC;
20 if (tfmini.getData(distanceCm, strength, tempC)) {
21 Serial.print("Distance: "); Serial.print(distanceCm); Serial.println(" cm");
22 }
23 delay(100);
24}
📄 File: tf_mini_12mm_lidar_-_raspberry_pi_pico.inoRaspberry Pi Pico
473 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RX=1, TX=0 on Raspberry Pi Pico
6#define LIDAR_SERIAL Serial1
7
8#include <TFMPlus.h>
9
10TFMPlus tfmini;
11
12void setup() {
13 Serial.begin(115200);
14 LIDAR_SERIAL.begin(115200);
15 tfmini.begin(&LIDAR_SERIAL);
16}
17
18void loop() {
19 int16_t distanceCm, strength, tempC;
20 if (tfmini.getData(distanceCm, strength, tempC)) {
21 Serial.print("Distance: "); Serial.print(distanceCm); Serial.println(" cm");
22 }
23 delay(100);
24}
UART LiDAR distance sensor.

نظرة عامة ومواصفات المنتج — بالعربية

TF MINI 12MM LIDAR متوفر الآن في متجر إكوسترا للإلكترونيات، ضمن قسم Sensors، بسعر 2.550,00 EGP. كود المنتج لدينا: EK1301. المنتج غير متوفر حالياً — تواصل معنا عبر واتساب لمعرفة موعد توفره القادم.

أهم المواصفات الفنية:

  • Product Name: TF Mini LiDAR Sensor (12m)
  • Category: Sensor → Distance / LiDAR
  • الموديل: TF Mini
  • Measurement Range: up to 12 m
  • Output Interface: UART / I2C (module dependent)
  • Operating Voltage: 5 V (typical)
  • Measurement Principle: Time-of-Flight (ToF) LiDAR
  • Frame Rate: up to 100 Hz (typical)

هذا المنتج مناسب لمشاريع الأردوينو (Arduino) و ESP32 و Raspberry Pi، ومشاريع الروبوتات وإنترنت الأشياء والتعليم الهندسي. جميع القطع مفحوصة قبل الشحن.

تصفّح المزيد من Sensors في إكوسترا.

Specification

Specification

WeightWeight10 g
Dimensions5 × 4 × 2 cm
Product NameTF Mini LiDAR Sensor (12m)
CategorySensor → Distance / LiDAR
ModelTF Mini
Measurement Rangeup to 12 m
Output InterfaceUART / I2C (module dependent)
Operating Voltage5 V (typical)
Measurement PrincipleTime-of-Flight (ToF) LiDAR
Frame Rateup to 100 Hz (typical)
Accuracy±1% (typical, range dependent)
Field of View~2.3° (typical)
Applicationsrobotics obstacle avoidance, distance measurement, drones, navigation, industrial sensing

Customer Reviews