AI Machine Vision Sensor

AI Machine Vision Sensor (HuskyLens)
1. Type: AI Machine Vision Sensor
2. Processing: Onboard AI

Apple Shopping Event

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

3.750,00 EGP

7 People watching this product now!

Payment Methods:

Description

This AI Machine Vision Sensor (HuskyLens) is a vision sensor module with onboard AI processing, handling object recognition tasks directly on the sensor rather than requiring a host computer to run the vision algorithms.

By processing vision data onboard, it offloads the computational burden of image recognition from the connected microcontroller, simplifying integration of vision-based features into Arduino or other embedded projects.

Suited to robotics, object tracking, and AI-vision projects where onboard processing simplifies adding machine vision capability to a microcontroller-based build.

Features:

  1. Onboard AI vision processing
  2. Reduces computational load on host microcontroller
  3. Suited for object recognition and tracking projects
  4. Simplifies machine vision integration for Arduino
🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
Vision SensorVCC/GND/RX/TX5V / GND / board RX pin / board TX pin
📟
AI Machine Vision Sensor
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
AI Machine Vision Sensor - Arduino Uno
AI Machine Vision Sensor - Arduino Nano
AI Machine Vision Sensor - Arduino Mega
AI Machine Vision Sensor - ESP32
AI Machine Vision Sensor - ESP8266
AI Machine Vision Sensor - STM32
AI Machine Vision Sensor - Raspberry Pi Pico
📄 File: ai_machine_vision_sensor_-_arduino_uno.inoArduino Uno
549 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RX=2, TX=3 on Arduino Uno. Consult your module's own UART protocol document for the real command/result format - this just shows raw frame reading.
6#include <SoftwareSerial.h>
7SoftwareSerial VISION_SERIAL(2, 3);
8
9void setup() {
10 Serial.begin(115200);
11 VISION_SERIAL.begin(115200); // check your module's actual baud rate
12}
13
14void loop() {
15 if (VISION_SERIAL.available()) {
16 Serial.write(VISION_SERIAL.read()); // pass raw result bytes through to USB serial for inspection
17 }
18}
📄 File: ai_machine_vision_sensor_-_arduino_nano.inoArduino Nano
550 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RX=2, TX=3 on Arduino Nano. Consult your module's own UART protocol document for the real command/result format - this just shows raw frame reading.
6#include <SoftwareSerial.h>
7SoftwareSerial VISION_SERIAL(2, 3);
8
9void setup() {
10 Serial.begin(115200);
11 VISION_SERIAL.begin(115200); // check your module's actual baud rate
12}
13
14void loop() {
15 if (VISION_SERIAL.available()) {
16 Serial.write(VISION_SERIAL.read()); // pass raw result bytes through to USB serial for inspection
17 }
18}
📄 File: ai_machine_vision_sensor_-_arduino_mega.inoArduino Mega
518 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RX=19, TX=18 on Arduino Mega. Consult your module's own UART protocol document for the real command/result format - this just shows raw frame reading.
6#define VISION_SERIAL Serial1
7
8void setup() {
9 Serial.begin(115200);
10 VISION_SERIAL.begin(115200); // check your module's actual baud rate
11}
12
13void loop() {
14 if (VISION_SERIAL.available()) {
15 Serial.write(VISION_SERIAL.read()); // pass raw result bytes through to USB serial for inspection
16 }
17}
📄 File: ai_machine_vision_sensor_-_esp32.inoESP32
511 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RX=16, TX=17 on ESP32. Consult your module's own UART protocol document for the real command/result format - this just shows raw frame reading.
6#define VISION_SERIAL Serial1
7
8void setup() {
9 Serial.begin(115200);
10 VISION_SERIAL.begin(115200); // check your module's actual baud rate
11}
12
13void loop() {
14 if (VISION_SERIAL.available()) {
15 Serial.write(VISION_SERIAL.read()); // pass raw result bytes through to USB serial for inspection
16 }
17}
📄 File: ai_machine_vision_sensor_-_esp8266.inoESP8266
549 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RX=D7, TX=D8 on ESP8266. Consult your module's own UART protocol document for the real command/result format - this just shows raw frame reading.
6#include <SoftwareSerial.h>
7SoftwareSerial VISION_SERIAL(D7, D8);
8
9void setup() {
10 Serial.begin(115200);
11 VISION_SERIAL.begin(115200); // check your module's actual baud rate
12}
13
14void loop() {
15 if (VISION_SERIAL.available()) {
16 Serial.write(VISION_SERIAL.read()); // pass raw result bytes through to USB serial for inspection
17 }
18}
📄 File: ai_machine_vision_sensor_-_stm32.inoSTM32
514 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RX=PA10, TX=PA9 on STM32. Consult your module's own UART protocol document for the real command/result format - this just shows raw frame reading.
6#define VISION_SERIAL Serial1
7
8void setup() {
9 Serial.begin(115200);
10 VISION_SERIAL.begin(115200); // check your module's actual baud rate
11}
12
13void loop() {
14 if (VISION_SERIAL.available()) {
15 Serial.write(VISION_SERIAL.read()); // pass raw result bytes through to USB serial for inspection
16 }
17}
📄 File: ai_machine_vision_sensor_-_raspberry_pi_pico.inoRaspberry Pi Pico
521 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RX=1, TX=0 on Raspberry Pi Pico. Consult your module's own UART protocol document for the real command/result format - this just shows raw frame reading.
6#define VISION_SERIAL Serial1
7
8void setup() {
9 Serial.begin(115200);
10 VISION_SERIAL.begin(115200); // check your module's actual baud rate
11}
12
13void loop() {
14 if (VISION_SERIAL.available()) {
15 Serial.write(VISION_SERIAL.read()); // pass raw result bytes through to USB serial for inspection
16 }
17}
Serial/UART-based smart camera module that runs its own onboard vision models and reports results (exact command set varies by firmware/vendor - check the module's own protocol doc) - shown here as a generic UART result reader.

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

AI Machine Vision Sensor متوفر الآن في متجر إكوسترا للإلكترونيات، ضمن قسم Sensors، بسعر 3.750,00 EGP. كود المنتج لدينا: EK1300. المنتج غير متوفر حالياً — تواصل معنا عبر واتساب لمعرفة موعد توفره القادم.

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

  • Type: AI Machine Vision Sensor
  • Processing: Onboard AI
  • الوزن: 1 g

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

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

Specification

Specification

WeightWeight10 g
Dimensions5 × 4 × 2 cm
TypeAI Machine Vision Sensor
ProcessingOnboard AI

Customer Reviews