The Bveeta AMR Charging Docking Port by Bizbot Technology is a specialized docking station designed for Autonomous Mobile Robots (AMRs). This component ensures that AMRs can recharge their batteries efficiently, enabling continuous operation and maximizing productivity. The docking port is engineered to provide a reliable and safe charging solution, making it an essential component in automated environments such as warehouses, manufacturing plants, and distribution centers.
Parameter | Specification |
---|---|
Manufacturer | Bizbot Technology |
Part ID | Bveeta AMR Charging Docking Port |
Input Voltage | 24V DC |
Output Voltage | 24V DC |
Maximum Current | 10A |
Power Rating | 240W |
Charging Efficiency | 95% |
Operating Temperature | -10°C to 50°C |
Dimensions | 150mm x 100mm x 50mm |
Weight | 500g |
Pin Number | Pin Name | Description |
---|---|---|
1 | VCC | 24V DC Input |
2 | GND | Ground |
3 | CHG_STATUS | Charging Status Indicator (High when charging) |
4 | TEMP_SENSE | Temperature Sensor Input |
5 | COMM_TX | Communication Transmit (for data exchange) |
6 | COMM_RX | Communication Receive (for data exchange) |
Docking Port Not Charging
Charging Status Indicator Not Working
Overheating
Q1: Can the Bveeta AMR Charging Docking Port be used with other AMR models?
Q2: What is the maximum charging current?
Q3: How can I monitor the charging status remotely?
If you are using an Arduino UNO to monitor the charging status and temperature, you can use the following code:
// Define pin connections
const int chgStatusPin = 2; // Charging status pin
const int tempSensePin = A0; // Temperature sensor pin
void setup() {
// Initialize serial communication
Serial.begin(9600);
// Set pin modes
pinMode(chgStatusPin, INPUT);
pinMode(tempSensePin, INPUT);
}
void loop() {
// Read charging status
int chgStatus = digitalRead(chgStatusPin);
// Read temperature sensor value
int tempValue = analogRead(tempSensePin);
// Convert temperature sensor value to Celsius (example conversion)
float temperature = (tempValue / 1024.0) * 500.0;
// Print charging status and temperature
Serial.print("Charging Status: ");
Serial.println(chgStatus == HIGH ? "Charging" : "Not Charging");
Serial.print("Temperature: ");
Serial.print(temperature);
Serial.println(" °C");
// Wait for 1 second before next reading
delay(1000);
}
This code initializes the charging status and temperature sensor pins, reads their values, and prints the charging status and temperature to the serial monitor.
By following this documentation, users can effectively integrate and utilize the Bveeta AMR Charging Docking Port in their automated systems, ensuring efficient and reliable operation of their AMRs.