The MPTT SCC SINOTRUCK is a high-performance solar charge controller (SCC) designed for managing and optimizing the charging of batteries in solar power systems. Manufactured by CAR, this component ensures efficient energy conversion and battery protection, making it ideal for off-grid solar installations, automotive applications, and industrial energy systems.
Common applications and use cases include:
The MPTT SCC SINOTRUCK is engineered to deliver robust performance under various environmental conditions. Below are its key technical details:
Parameter | Value |
---|---|
Manufacturer | CAR |
Part ID | CAR |
Maximum Input Voltage | 100V DC |
Maximum Output Current | 30A |
Battery Voltage Range | 12V/24V (auto-detect) |
Efficiency | Up to 98% |
Operating Temperature | -20°C to +60°C |
Communication Interface | RS485, CAN Bus |
Protection Features | Overcharge, Overload, Reverse Polarity |
The MPTT SCC SINOTRUCK features a terminal block for input and output connections, as well as communication ports. Below is the pin configuration:
Pin Number | Label | Description |
---|---|---|
1 | PV+ | Positive terminal for solar panel input |
2 | PV- | Negative terminal for solar panel input |
3 | BAT+ | Positive terminal for battery connection |
4 | BAT- | Negative terminal for battery connection |
5 | LOAD+ | Positive terminal for load connection |
6 | LOAD- | Negative terminal for load connection |
Port | Description |
---|---|
RS485 | For external monitoring and control |
CAN Bus | For integration with vehicle systems |
The MPTT SCC SINOTRUCK can be monitored using an Arduino UNO via the RS485 interface. Below is an example code snippet for reading data:
#include <ModbusMaster.h>
// Instantiate ModbusMaster object
ModbusMaster node;
void setup() {
Serial.begin(9600); // Initialize serial communication
node.begin(1, Serial); // Set Modbus slave ID to 1
}
void loop() {
uint8_t result;
uint16_t data[2];
// Read battery voltage (register 0x3100)
result = node.readInputRegisters(0x3100, 2);
if (result == node.ku8MBSuccess) {
data[0] = node.getResponseBuffer(0); // High byte
data[1] = node.getResponseBuffer(1); // Low byte
float batteryVoltage = (data[0] << 8 | data[1]) / 100.0;
Serial.print("Battery Voltage: ");
Serial.print(batteryVoltage);
Serial.println(" V");
} else {
Serial.println("Failed to read data");
}
delay(1000); // Wait 1 second before next read
}
No Output from SCC
Overheating
Communication Failure
Battery Not Charging
Q: Can the MPTT SCC SINOTRUCK handle multiple solar panels?
A: Yes, as long as the combined voltage and current do not exceed the SCC's maximum input ratings.
Q: Is the SCC compatible with lithium-ion batteries?
A: Yes, it supports various battery types, including lithium-ion, lead-acid, and AGM. Ensure the correct battery type is selected in the settings.
Q: How do I update the firmware?
A: Firmware updates can be performed via the RS485 or CAN Bus interface using the manufacturer's software.
Q: What happens if the battery is fully charged?
A: The SCC will automatically stop charging and switch to a float mode to maintain the battery's charge without overcharging.
This documentation provides a comprehensive guide to using the MPTT SCC SINOTRUCK effectively. For further assistance, refer to the manufacturer's user manual or contact CAR support.