Skip to main content

reCamera HQ POE Overview

reCamera 2002 HQ PoE is equipped with an advanced CMOS sensor for sharper, clearer images. It has an M12 lens mount—flexible to replace the default lens with any compatible 2MP M12 lens. Also supports PoE (Power over Ethernet): no separate USB/DC power needed, just one Ethernet cable to a PoE switch for power and data.

Feature

  • High Quality: Equipped with a 1/2.9-inch GC2053 CMOS sensor, providing superior image quality.
  • M12 Lens Mount: Default 90° FOV, easily replaceable with any standard M12 lens.
  • Ethernet with PoE (Power over Ethernet): Supports data and power over a single cable, PoE Mode A only.
  • IO/UART Extension: 6-pin header with 1×UART and 3×GPIO.

Specifications

Processing System

ParameterValue
SOCSG2002
CPUC906@1GHz + C906@700MHz
AI Performance1 Tops @ Int8
MCU8051 @ 8KB SRAM
Operating SystemLinux
Memory256 MB
Video Encoder5MP @ 30Fps
SensorGC2053
Optical Format1/2.9inch
Resolution1920x1080
Max Frame rate30fps@full size
lens mountM12
FOV93°
Ethernet100Mbps with PoE
USBUSB Type-C(2.0)
Dimension40x40x45.8mm40x40x53.1mm with lens
Operation Temperature-20~50°C
Operation Humidity95%

Core Board-C101

BoardFeaturesVersion
C1_2002w- eMMC
- WiFi/BLE module
- Onboard antenna
- External antenna connector
1.2
C1_2002- eMMC
- Extra SDIO to base board
- Extra UART to base board
1.2
Top ViewBottom View

Sensor Board-S101

Top ViewBottom View

⚙️ features

SensorGC2053CMOS Size1/2.9"
Pixels2MPApertureF2.8
Focal Length2.9mm ±0.5%Field of ViewDFOV 93° HFOV 84° VFOV 54°
Distortion0.5 %Relative Illumination30% ± 5%
Focusing rane39~69.5 CM Height of focus50 CM
Video1920 x 1080p @30fps, 1280 x 720p @30fps
Interfaces- 1 x microphone
- 1 x speaker
- 3 x LED indicator

💡 B3_POE

UpBottom
⚙️ Features:
  • 1 x RJ45 port for 802.3af PSE.
  • 1 x UART port.
  • 1 x Debug port.
  • 3 x IO port.

Hardware Interface

Light

There are 3 indicators on the recamera, red and blue light are programmable indicators, and the green indicator is the power indicator which is not programmable. Red is the status indicator of the CPU and blue is the reading status indicator of the system emmc.

Light Indicators Status:

LED(color)StatusStatement
LED1 - GreenONPower On
LED2 - RedFlashingCPU Working(user define)
LED3 - BlueFlashingeMMC Reading/Writing

Example 1: Use linux command change the red led brightness to zero

echo 0 | sudo tee /sys/class/leds/red/brightness

Example 2: completely turn red light off

echo none | sudo tee /sys/class/leds/red/trigger

Mic & Speaker

The recamera has a microphone and a speaker. You can invoke the microphone and speaker by following the command. The recamera can play audio files in wav format.

The default format of the player is: 16bit bitrate; The sampling rate is 16,000

sudo arecord -D hw:0,0 -r 16000 -f S16_LE -c 1 -d 5 /home/recamera/test.wav //Record five seconds of audio

sudo aplay -D hw:1,0 /home/recamera/test.wav //Playing audio

POE

The POE module is built into the hardware of the reCamera HQ POE version. The WiFi module has been removed. However, you can restore the Wi-Fi function by replacing the core board of the SG2002w.

Connect the reCamera to a switch that supports the POE 802.3af protocol, and the reCamera device will start up.

You can check the device's IP address in your router to access it, or connect the reCamera via USB and access the terminal to query the wired network IP.

IO

Using the GPIO sysfs interface to control I/O

In Linux, the most common way to read and write GPIO is using the GPIO sysfs interface. This is implemented by manipulating files such as export, unexport, gpio{N}/direction, and gpio{N}/value (replace {N} with the actual pin number) under the /sys/class/gpio directory, and it is often used in shell scripts.

The reCamera POE backplane has 3 available IO ports. Each port can be configured as an input or output. The IO ports are numbered as follows:

IO PortGPIO Number
D1490
CLK(Multiplexed IO pins)487
SMD(Multiplexed IO pins)488
echo "490" > /sys/class/gpio/export #Enable pin GPIO490

echo "out" > /sys/class/gpio/gpio490/direction #Enable the output mode
echo 1 > /sys/class/gpio/gpio490/value # Set the pin to a high level
echo 0 > /sys/class/gpio/gpio490/value # Set the pin to a low level

echo "in" > /sys/class/gpio/gpio490/direction #Enable the input mode
cat /sys/class/gpio/gpio490/value #Read the pin level

echo "490" > /sys/class/gpio/unexport #Disable pin GPIO490

Uart (Debug)

The POE baseboard of reCamera has two sets of serial ports, namely /ttyS0 (for Debug) and /ttyS3.

The debug serial port of this device has a baud rate of 115200 and supports connection to remote monitoring systems.

#Use the stty tool to query its communication parameters.

stty -F /dev/ttyS3
# Modify the serial port baud rate, where ispeed refers to the input speed and ospeed refers to the output speed.

stty -F /dev/ttyS3 ispeed 115200 ospeed 115200

The default serial port has echo enabled, and you can use the following command to disable it:

stty -F /dev/ttyS3 -echo

Serial communication:

#Send data
echo "hello world" > /dev/ttyS3
echo Hello! > /dev/ttyS3
#Receive data
cat /dev/ttyS3

Use the minicom tool to communicate via the serial port:

minicom -D /dev/ttyS3 -b 115200

User Button

The reCamera's usr button can be customized by the user.

echo "510" > /sys/class/gpio/export
echo "in" > /sys/class/gpio/gpio510/direction #Enable the input mode
cat /sys/class/gpio/gpio510/value #When the key is pressed, 0 is printed

Part list

ItemQuantity
reCamera 2002x HQ PoEx1
USB Type-C Wirex1
Ethernet Wirex1
User Manualx1
6 Pin Cablex1

Tech Support & Product Discussion

Thank you for choosing our products! We are here to provide you with different support to ensure that your experience with our products is as smooth as possible. We offer several communication channels to cater to different preferences and needs.

Loading Comments...