Manual - Zq8003
To charge your phone, tablet, or GPS unit:
Note: The ZQ8003 manual advises against charging the jump starter and using it as a power bank simultaneously. This creates excessive heat.
The ZQ8003 manual typically provides example code for popular platforms. Here is a generic Arduino example for speed control:
// ZQ8003 PWM Speed Control Example // Connect PWM pin to ZQ8003 PWM input // Connect EN pin to ZQ8003 Enable inputint pwmPin = 9; // PWM output pin int enablePin = 8; // Enable pin int pwmValue = 0; zq8003 manual
void setup() pinMode(pwmPin, OUTPUT); pinMode(enablePin, OUTPUT); digitalWrite(enablePin, HIGH); // Enable the driver Serial.begin(9600);
void loop() // Ramp up speed for(pwmValue = 0; pwmValue <= 255; pwmValue++) analogWrite(pwmPin, pwmValue); delay(10); // Ramp down speed for(pwmValue = 255; pwmValue >= 0; pwmValue--) analogWrite(pwmPin, pwmValue); delay(10);
Since I don't have specific details about the ZQ8003, I'll provide a general list of what a manual for a device might cover:
Q: Can I use the ZQ8003 while it is charging? A: No. The manual strongly warns against "pass-through" usage. It can confuse the battery management system (BMS).
Q: What does the "Boost" button actually do? A: It forces the ZQ8003 to output voltage even if it detects 0V at the clamps. This is for completely dead batteries (below 2V). Do not use it on a normal battery. To charge your phone, tablet, or GPS unit:
Q: My ZQ8003 has a different port layout. Is this the wrong manual? A: The ZQ8003 is a reference design made by several OEM factories. While the core functions (jump start, flashlight, USB out) are identical, the button locations or LED colors may differ slightly. The operational logic remains the same.
Q: How do I know if my ZQ8003 is defective? A: Press and hold the power button for 10 seconds. If no LEDs illuminate after charging for 6 hours, the internal BMS has failed. Contact your seller for a warranty replacement (usually 12 months).