

The Wireless Charging Module Transmitter CC1 is a device designed to transmit power wirelessly to compatible receivers using electromagnetic induction. This module eliminates the need for physical connectors, enabling convenient and efficient charging for a variety of devices. It is commonly used in applications such as wireless phone chargers, wearable device chargers, and other consumer electronics requiring contactless power transfer.








| Parameter | Value |
|---|---|
| Input Voltage | 5V DC |
| Input Current | 1A |
| Output Power | Up to 5W |
| Transmission Frequency | 110-205 kHz |
| Efficiency | ~70% |
| Operating Temperature | -10°C to 50°C |
| Dimensions | 30mm x 20mm x 5mm |
| Pin Name | Pin Type | Description |
|---|---|---|
| VCC | Power Input | Connect to a 5V DC power source. |
| GND | Ground | Connect to the ground of the power source. |
| OUT+ | Output Signal | Positive output terminal for the wireless transmission coil. |
| OUT- | Output Signal | Negative output terminal for the wireless transmission coil. |
Power Supply Connection:
VCC pin to a stable 5V DC power source.GND pin to the ground of the power source.Coil Connection:
OUT+ and OUT- pins. Ensure proper polarity.Placement:
Operation:
While the CC1 module does not directly interface with an Arduino, you can use an Arduino to control the power supply to the module. Below is an example of how to toggle the power to the module using a relay:
// Example: Controlling the Wireless Charging Module with Arduino
// This code toggles the power to the CC1 module using a relay module.
const int relayPin = 7; // Pin connected to the relay module
void setup() {
pinMode(relayPin, OUTPUT); // Set relay pin as output
digitalWrite(relayPin, LOW); // Ensure relay is off at startup
}
void loop() {
digitalWrite(relayPin, HIGH); // Turn on the relay (power to CC1)
delay(10000); // Keep the module on for 10 seconds
digitalWrite(relayPin, LOW); // Turn off the relay (cut power to CC1)
delay(5000); // Wait for 5 seconds before turning it on again
}
Note: Ensure the relay module is rated for the input voltage and current of the CC1 module.
No Power Transmission:
VCC and GND pins are properly connected to a 5V DC power source.Low Charging Efficiency:
Overheating:
Interference with Other Devices:
Q: Can the CC1 module charge devices with higher power requirements?
A: No, the CC1 module is limited to a maximum output power of 5W. For higher power requirements, consider using a higher-rated wireless charging module.
Q: What is the effective charging range of the CC1 module?
A: The effective range is typically 2-8mm, depending on the receiver device and coil alignment.
Q: Can I use the CC1 module outdoors?
A: The module is not weatherproof. If outdoor use is required, ensure it is enclosed in a waterproof and heat-resistant casing.
Q: Is the CC1 module compatible with Qi wireless charging standards?
A: The CC1 module is not explicitly Qi-certified but may work with some Qi-compatible devices. Testing is recommended for specific use cases.