Mini GPS Waterproof Bluetooth Tracker – Red

  • Real-time tracking via smartphone app
  • Compact and lightweight for easy attachment
  • Waterproof (splash-resistant) design
  • Anti-lost alert when out of range
  • One-tap location finder
  • Compatible with Android & iOS devices
  • Long battery life with low power consumption

Apple Shopping Event

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

160,00 EGP

2 People watching this product now!

Payment Methods:

Description

Keep track of your valuables with this compact and reliable Mini GPS Bluetooth Tracker. Designed with portability and durability in mind, this device helps you easily locate lost items such as keys, wallets, bags, or even pets. The waterproof design ensures protection against splashes and light rain, making it perfect for everyday use. Simply connect it to your smartphone via Bluetooth and track your items in real-time through a dedicated mobile app.


Specifications

  • Product Type: Bluetooth GPS Tracker
  • Color: Red
  • Connectivity: Bluetooth (Low Energy)
  • Range: Up to 10–30 meters (depending on environment)
  • Waterproof: Yes (splash-resistant)
  • Battery Type: Replaceable coin cell (e.g., CR2032)
  • Compatibility: Android & iOS devices
  • Material: Durable ABS plastic
  • Size: Compact & lightweight design

Features

  • Real-time tracking via smartphone app
  • Compact and portable for easy attachment
  • Waterproof design for everyday protection
  • Anti-lost alarm alerts when out of range
  • One-tap location finder through mobile app
  • Can be attached to keys, bags, pets, or luggage
  • Long battery life with low power consumption
  • Stylish red color for easy visibility
🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
GPS sectionVCC/GND/TX/RX3.3-5V / GND / board RX pin / board TX pin
📟
Mini GPS Waterproof Bluetooth Tracker - Red
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
Mini GPS Waterproof Bluetooth Tracker - Red - Arduino Uno
Mini GPS Waterproof Bluetooth Tracker - Red - Arduino Nano
Mini GPS Waterproof Bluetooth Tracker - Red - Arduino Mega
Mini GPS Waterproof Bluetooth Tracker - Red - ESP32
Mini GPS Waterproof Bluetooth Tracker - Red - ESP8266
Mini GPS Waterproof Bluetooth Tracker - Red - STM32
Mini GPS Waterproof Bluetooth Tracker - Red - Raspberry Pi Pico
📄 File: mini_gps_waterproof_bluetooth_tracker_-_red_-_arduino_uno.inoArduino Uno
524 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 LINK_SERIAL(2, 3);
8
9#include <TinyGPS++.h>
10
11TinyGPSPlus gps;
12
13void setup() {
14 Serial.begin(115200);
15 LINK_SERIAL.begin(9600);
16}
17
18void loop() {
19 while (LINK_SERIAL.available()) {
20 gps.encode(LINK_SERIAL.read());
21 }
22 if (gps.location.isUpdated()) {
23 Serial.print("Lat: "); Serial.print(gps.location.lat(), 6);
24 Serial.print(" Lng: "); Serial.println(gps.location.lng(), 6);
25 }
26}
📄 File: mini_gps_waterproof_bluetooth_tracker_-_red_-_arduino_nano.inoArduino Nano
525 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 LINK_SERIAL(2, 3);
8
9#include <TinyGPS++.h>
10
11TinyGPSPlus gps;
12
13void setup() {
14 Serial.begin(115200);
15 LINK_SERIAL.begin(9600);
16}
17
18void loop() {
19 while (LINK_SERIAL.available()) {
20 gps.encode(LINK_SERIAL.read());
21 }
22 if (gps.location.isUpdated()) {
23 Serial.print("Lat: "); Serial.print(gps.location.lat(), 6);
24 Serial.print(" Lng: "); Serial.println(gps.location.lng(), 6);
25 }
26}
📄 File: mini_gps_waterproof_bluetooth_tracker_-_red_-_arduino_mega.inoArduino Mega
493 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RX=19, TX=18 on Arduino Mega
6#define LINK_SERIAL Serial1
7
8#include <TinyGPS++.h>
9
10TinyGPSPlus gps;
11
12void setup() {
13 Serial.begin(115200);
14 LINK_SERIAL.begin(9600);
15}
16
17void loop() {
18 while (LINK_SERIAL.available()) {
19 gps.encode(LINK_SERIAL.read());
20 }
21 if (gps.location.isUpdated()) {
22 Serial.print("Lat: "); Serial.print(gps.location.lat(), 6);
23 Serial.print(" Lng: "); Serial.println(gps.location.lng(), 6);
24 }
25}
📄 File: mini_gps_waterproof_bluetooth_tracker_-_red_-_esp32.inoESP32
486 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RX=16, TX=17 on ESP32
6#define LINK_SERIAL Serial1
7
8#include <TinyGPS++.h>
9
10TinyGPSPlus gps;
11
12void setup() {
13 Serial.begin(115200);
14 LINK_SERIAL.begin(9600);
15}
16
17void loop() {
18 while (LINK_SERIAL.available()) {
19 gps.encode(LINK_SERIAL.read());
20 }
21 if (gps.location.isUpdated()) {
22 Serial.print("Lat: "); Serial.print(gps.location.lat(), 6);
23 Serial.print(" Lng: "); Serial.println(gps.location.lng(), 6);
24 }
25}
📄 File: mini_gps_waterproof_bluetooth_tracker_-_red_-_esp8266.inoESP8266
524 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RX=D7, TX=D8 on ESP8266
6#include <SoftwareSerial.h>
7SoftwareSerial LINK_SERIAL(D7, D8);
8
9#include <TinyGPS++.h>
10
11TinyGPSPlus gps;
12
13void setup() {
14 Serial.begin(115200);
15 LINK_SERIAL.begin(9600);
16}
17
18void loop() {
19 while (LINK_SERIAL.available()) {
20 gps.encode(LINK_SERIAL.read());
21 }
22 if (gps.location.isUpdated()) {
23 Serial.print("Lat: "); Serial.print(gps.location.lat(), 6);
24 Serial.print(" Lng: "); Serial.println(gps.location.lng(), 6);
25 }
26}
📄 File: mini_gps_waterproof_bluetooth_tracker_-_red_-_stm32.inoSTM32
489 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RX=PA10, TX=PA9 on STM32
6#define LINK_SERIAL Serial1
7
8#include <TinyGPS++.h>
9
10TinyGPSPlus gps;
11
12void setup() {
13 Serial.begin(115200);
14 LINK_SERIAL.begin(9600);
15}
16
17void loop() {
18 while (LINK_SERIAL.available()) {
19 gps.encode(LINK_SERIAL.read());
20 }
21 if (gps.location.isUpdated()) {
22 Serial.print("Lat: "); Serial.print(gps.location.lat(), 6);
23 Serial.print(" Lng: "); Serial.println(gps.location.lng(), 6);
24 }
25}
📄 File: mini_gps_waterproof_bluetooth_tracker_-_red_-_raspberry_pi_pico.inoRaspberry Pi Pico
496 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RX=1, TX=0 on Raspberry Pi Pico
6#define LINK_SERIAL Serial1
7
8#include <TinyGPS++.h>
9
10TinyGPSPlus gps;
11
12void setup() {
13 Serial.begin(115200);
14 LINK_SERIAL.begin(9600);
15}
16
17void loop() {
18 while (LINK_SERIAL.available()) {
19 gps.encode(LINK_SERIAL.read());
20 }
21 if (gps.location.isUpdated()) {
22 Serial.print("Lat: "); Serial.print(gps.location.lat(), 6);
23 Serial.print(" Lng: "); Serial.println(gps.location.lng(), 6);
24 }
25}
Combo GPS + Bluetooth tracker board - the GPS half is read exactly like a standalone NEO-6M/M8N over UART NMEA.

Specification

Specification

WeightWeight10 g
Dimensions5 × 4 × 2 cm
Product TypeBluetooth Proximity Tracker
ConnectivityBluetooth Low Energy (BLE)
Range10 – 30 meters (Environment dependent)
Battery TypeReplaceable coin cell (e.g., CR2032)
Waterproof RatingSplash-resistant
CompatibilityAndroid & iOS (via mobile app)
MaterialDurable ABS plastic
ColorRed

Customer Reviews