Chat
Welcome to Flux
Treat Flux like your intern. Tell it what you'd like to build and it'll get to work. You can also ask it questions, brainstorm ideas, and teach it your preferences. Learn More
Ready.
Reviews
Properties
Properties describe core aspects of the project.
Pricing & Availability
Distributor | Qty 1 |
|---|---|
Arrow | $28.56–$28.83 |
Digi-Key | $16.67–$17.71 |
LCSC | $22.99 |
Mouser | $29.95 |
Verical | $28.29–$40.23 |
Assets
No assets added.
Controls
Welcome 👋
Flux helps you build PCBs faster with an AI teammate!
Create your account to collaborate, stay updated, fork your own version, and get instant answers from our AI agent.
hooooo807
copilot
-
Voltage Sensing:
- You can use a voltage sensor or a voltage divider circuit to measure AC voltage.
- The ZMPT101B is a good choice for voltage sensing.
-
Current Sensing:
- A current transformer (CT) or shunt resistor can be used to measure current.
-
Power Factor Calculation:
- This involves phase difference measurement between voltage and current, which can be done using a microcontroller capable of FFT or zero-cross detection.
-
Microcontroller:
- The ABX00053 (Arduino) can be utilized for reading the sensor inputs, processing data, and displaying the power factor.
-
Display:
- The WC1602A LCD can be used for displaying the power factor and other readings.
-
Other Components:
- Resistors, capacitors, and connectors for interfacing the components.
Basic Steps for Schematic:copilot
- Component: ZMPT101B
- Connections:
- Connect ZMPT101B:VCC to 5V or 3.3V power supply.
- Connect ZMPT101B:GND to GND.
- Connect ZMPT101B:OUT to an ADC pin on your microcontroller like U1:A0/DAC0/GPIO26.
2. Current Measurement:- Approach: Use a current transformer (CT) or shunt resistor.
- Connect the output of the CT/shunt to another ADC pin on the microcontroller.
3. Microcontroller Setup (ABX00053):-
Power Supply:
- Connect U1:+3V3 to a regulated 3.3V power source.
- Connect U1:GND to ground.
- Connect U1:+5V to a 5V power source if needed.
-
Voltage and Current Readings:
- Connect the outputs from ZMPT101B and the CT/shunt to ADC pins like U1:A0 and U1:A1.
4. Display Connection:- Component: LCD Display (e.g., WC1602A)
- Connections:
- Connect LCD:VSS to GND.
- Connect LCD:VDD to 5V or 3.3V.
- Connect LCD:RS, LCD:RW, and LCD:E to digital pins on the microcontroller.
- Data pins (e.g., LCD:D4 - D7) to digital GPIO on the microcontroller.
5. Power Supply Management:- Component: TPS561208DDCR for power regulation.
- Connections:
- Connect IC1:VIN to your input voltage source.
- Connect IC1:GND to ground.
- Connect IC1:VOUT to power your microcontroller and sensors.
6. Additional Setup:- Add any additional decoupling capacitors (e.g., C1, C2) around power supply inputs for stability.
- Use resistors for interfacing the display or sensing components as necessary for voltage levels (R1, R2, etc.).
7. Connectors and Interfaces:hooooo807
copilot
- Voltage Sensor (ZMPT101B):
- Connect ZMPT101B:VCC to U1:+3V3 (regulated 3.3V from the microcontroller).
- Connect ZMPT101B:GND to U1:GND.
- Connect ZMPT101B:OUT to U1:A0/DAC0/GPIO26 for ADC reading.
Current Measurement:- Current Sensing (assuming you have a current sensor with similar requirements):
- Connect the sensor’s output to U1:A1/GPIO27 for ADC input.
Microcontroller (ABX00053):-
Power Supply:
- Connect U1:+3V3 and U1:+5V to the power output of the regulator IC1 (explained below).
- Connect all U1:GND pins to the common ground.
-
Reset and VCC:
- Connect U1:~RESET to a digital pin for enabling reset functionality.
- Connect U1:VIN to your primary power input source if required.
Display (assuming you have a standard LCD Display):- LCD:
- Connect LCD:VSS to GND.
- Connect LCD:VDD to U1:+3V3 or U1:+5V.
- Connect LCD:RS, LCD:E, and data pins LCD:D4 - D7 to available digital GPIO pins on U1.
- Connect LCD:RW to GND to set write mode.
Power Supply Management (TPS561208DDCR):- Power Regulator:
- Connect IC1:VIN to your primary high-voltage input source.
- Connect IC1:GND to the common ground.
- Use external components to configure IC1 to output the needed 3.3V and 5V via IC1:VOUT.
Other Components:-
Capacitors (e.g. C1, C2):
- Place a capacitor across VDD and GND near each power-consuming component to decouple noise.
-
Resistors (e.g. R1, R2):
- Use pull-up or pull-down resistors where needed for initializing pin states, or in interface circuits for sensors and displays.
Connectors:- J3 & J4:
- Use these for input power and signal interfacing in your schematic.
Assumptions:hooooo807