Schematic Design Review

4:47

Project
BOM
Datasheet
Review (ERC/DRC)

Reviewing schematics.

Analyzing reviews and components.

Examining power connections.

Reviewing schematic labeling and components.

Examining display connections and issues.

Identifying design issues.

Analyzing design inconsistencies.

Using Review (ERC/DRC) Tool.

Using BOM Tool.

Looking for "output type open-collector and requirement for external segment resistors" in 1809172041_Texas-Instruments-SN74LS47N_C129379.pdf

Looking for "intended display type (common anode or common cathode)" in 1809172041_Texas-Instruments-SN74LS47N_C129379.pdf

Looking for "CLR pin polarity and behavior" in sn74ls193.pdf

Looking for "UP and DOWN input levels and requirement to avoid floating inputs" in sn74ls193.pdf

Looking for "clear input polarity (CLR) active level" in sn74ls193.pdf

Looking for "UP and DOWN input truth and whether unused inputs must be tied high or low" in sn74ls193.pdf

Looking for "RBI and LT pins default/inactive levels, connection recommendations when unused" in 1809172041_Texas-Instruments-SN74LS47N_C129379.pdf

Looking for "Pin functions and required connections for LT, RBI, RBO when unused" in 1809172041_Texas-Instruments-SN74LS47N_C129379.pdf

Identifying schematic issues.

Here is a focused schematic-level review based on what is actually present in the project. Per Flux knowledge base guidance, I’m evaluating only observable connectivity, placements, and best practices, avoiding speculation, and providing concrete corrections.
Electrical and logical issues
  • 555 clock output is floating
    • Observation: U1 has no net on its OUT/Q pin in the netlist; only THR/TR/DIS/R/VCC/GND are connected (e.g., U1:THR/TR on Net 33; U1:DIS on Net 32; U1:R on Net 34).
    • Impact: No clock reaches the counters; the design cannot count.
    • Fix: Connect U1 OUT to the proper counting input path (UP or DOWN clock gating as intended).
  • Floating UP/DOWN input depending on switch position
    • Observation: Up_Dowm COM is tied to VCC (Net 12). Its throws drive Ones_74192 UP (Net 30) and DOWN (Net 31) directly. The unselected input is left unconnected.
    • Impact: The unselected clock input floats.
    • Fix: Add defined bias on both Ones_74192 UP and DOWN (e.g., pull-downs or pull-ups) so the inactive input is not floating. Example: add 10k Resistor from each unused UP/DOWN net to the inactive state.
  • Duplicate designators for logic ICs (critical)
    • Observation: There are three separate parts all named AND_7408 and two named NOT_7404.
    • Impact: Designator uniqueness is violated; nets like “AND_7408:1A”/“1Y” become ambiguous and may short unintended pins across different physical ICs.
    • Fix: Re-annotate so each physical IC has a unique designator (e.g., U2, U3, U4 or AND1/AND2/AND3, NOT1/NOT2). Then re-verify all connections.
  • Self-feedback/short connections on AND gates
    • Observation examples from the netlist:
      • Net 52 ties AND_7408:1A directly to its own 1Y.
      • Net 61 ties AND_7408:3A directly to its own 3Y.
    • Impact: Outputs hard-wired to inputs with no other defined source is unusual and likely erroneous.
    • Fix: Review all nets where an AND gate output equals one of its inputs; break inadvertent loops unless you are intentionally creating feedback with proper biasing and timing.
  • 7-seg decoder control pins appear unconnected
    • Observation: Control pins on Ones 7447 and Tens_7447 (e.g., LT, RBI, RBO) do not appear in the connected nets list.
    • Impact: Floating control inputs can cause undefined display behavior.
    • Fix: Tie LT, RBI, and (if unused) RBO to defined logic levels as recommended in the SN74LS47 datasheet.
Component-level review
  • Segment current-limiting resistors are missing
    • Observation: No resistors exist between segment outputs of Ones 7447/Tens_7447 and the segments on Ones/Tens. Only R1/R2/R3/R4 feed the common anode pins.
    • Datasheet requirement: The SN74LS47 datasheet states the outputs are open-collector and “external segment resistors must be used to limit segment current to 25 mA or less.”
    • Fix: Add one series resistor per segment line (seven per digit). Example: 220Ω Resistor on each segment net between Ones 7447/Tens_7447 outputs and Ones/Tens segment pins.
  • Parallel/duplicated pull-ups on ~LOAD
    • Observation: R8 and R9 both pull Net 37 to VCC and that single net drives both Ones_74192:~LOAD and Tens_74192:~LOAD through the Reset button.
    • Impact: Two pull-ups in parallel on the same net are redundant.
    • Fix: Use a single pull-up resistor for Net 37 unless you intend separate control per digit (in which case split nets and give each its own pull-up).
  • Decoupling capacitors absent on every IC VCC
  • Generic passives without values or MPNs
    • Observation: R1R9 and C1 are “Generic” with no values set, and reviews flag missing MPNs.
    • Fix: Assign electrical values on the schematic, then select real parts/footprints in the BOM.
Power and signal integrity
  • VCC net unlabeled; unused +5V portal
    • Observation: Power is distributed on “Net 12” (includes many VCC pins and J1:P1). There is also a 5V power net portal that is not tied to Net 12.
    • Impact: Ambiguous power net naming; the portal does not function unless its net matches.
    • Fix: Rename Net 12 to +5V or connect the 5V portal to the same net for clarity.
  • Potential SI/reliability risks from floating logic nodes
    • Observation: As noted, the unselected UP/DOWN input floats and there are AND-gate self-loops with no defined sources.
    • Fix: Ensure every logic input has a defined DC state (bias resistors or direct ties) and remove unintended self-feedback.
Schematic best practices and consistency
  • Designator uniqueness
    • Observation: Duplicate designators for AND_7408 and NOT_7404.
    • Fix: Re-annotate uniquely, then re-check nets.
  • Net naming and documentation
    • Observation: Primary power net is “Net 12” and key control nets (e.g., decoder LT/RBI/RBO) are not labeled.
    • Fix: Name critical nets (+5V, CLK, ~LOAD, ~CLR, etc.) and add brief notes where behavior matters.
  • Switch footprint missing
    • Observation: DRC flags the Up_Dowm (SPDT) as missing a footprint.
    • Fix: Assign a footprint to ensure manufacturability.
Datasheet-backed notes used for the above
  • SN74LS47 decoder/driver: Datasheet states the outputs are open-collector and require external segment resistors to limit segment current to 25 mA or less. Your schematic currently lacks per‑segment resistors between Ones 7447/Tens_7447 and the displays Ones/Tens.
  • SN74LS192 counters: UP/DOWN are separate clock inputs; only defined low-to-high transitions count. In your schematic, the unselected input is left floating when Up_Dowm selects the other side. Ensure unused clock input is biased to a defined logic level.
Targeted fixes checklist (actionable)
  1. Connect U1 OUT to the intended clock path for the counters.
  2. Add pull resistors on Ones_74192 UP and DOWN so neither floats when unselected by Up_Dowm.
  3. Re-annotate duplicate AND_7408 and NOT_7404 to unique designators; then review and correct the self-feedback nets (e.g., Nets 52, 61).
  4. Add one series resistor per segment for both digits between Ones 7447/Tens_7447 outputs and Ones/Tens segments. Example: 220Ω Resistor, adjust after current budget is set.
  5. Add local decoupling: one 100nF Capacitor per IC from VCC to GND, placed close to each device’s power pins.
  6. Tie Ones 7447/Tens_7447 control pins (LT/RBI/RBO) to defined levels as per datasheet if ripple blanking/lamp test features are unused.
  7. Replace duplicated pull-ups R8/R9 on Net 37 with a single pull-up unless you split ~LOAD per digit.
  8. Assign values for R1R9 and C1 on the schematic, then select real MPNs/footprints.
  9. Unify power net naming: tie “Net 12” to the 5V power portal or rename Net 12 to “+5V” for clarity.
  10. Assign a footprint to Up_Dowm so it is manufacturable.
If you want, I can prepare specific per-segment resistor placements and add decoupling caps next.
Clarify 555 clock routing
Fix floating UP/DOWN inputs
Add segment resistors
Add decoupling caps
Resolve LT/RBI/RBO wiring
85 days

Ready.


Ones_74192
R3
Resistance
10k Ω
7432
7408
R2
Resistance
10k Ω
Ones
R8
Resistance
10K Ω
R1
Resistance
10k Ω
R4
Resistance
10k Ω
Ones 7447


  • Ground
    A common return path for electric current. Commonly known as ground.
  • Net Portal
    Wirelessly connects nets on schematic. Used to organize schematics and separate functional blocks. To wirelessly connect net portals, give them same designator. #portal
  • Power Net Portal
    Wirelessly connects power nets on schematic. Identical to the net portal, but with a power symbol. Used to organize schematics and separate functional blocks. To wirelessly connect power net portals, give them the same designator. #portal #power
  • Generic Resistor
    A generic fixed resistor for rapid developing circuit topology. Save precious design time by seamlessly add more information to this part (value, footprint, etc.) as it becomes available. Standard resistor values: 1.0Ω 10Ω 100Ω 1.0kΩ 10kΩ 100kΩ 1.0MΩ 1.1Ω 11Ω 110Ω 1.1kΩ 11kΩ 110kΩ 1.1MΩ 1.2Ω 12Ω 120Ω 1.2kΩ 12kΩ 120kΩ 1.2MΩ 1.3Ω 13Ω 130Ω 1.3kΩ 13kΩ 130kΩ 1.3MΩ 1.5Ω 15Ω 150Ω 1.5kΩ 15kΩ 150kΩ 1.5MΩ 1.6Ω 16Ω 160Ω 1.6kΩ 16kΩ 160kΩ 1.6MΩ 1.8Ω 18Ω 180Ω 1.8KΩ 18kΩ 180kΩ 1.8MΩ 2.0Ω 20Ω 200Ω 2.0kΩ 20kΩ 200kΩ 2.0MΩ 2.2Ω 22Ω 220Ω 2.2kΩ 22kΩ 220kΩ 2.2MΩ 2.4Ω 24Ω 240Ω 2.4kΩ 24kΩ 240kΩ 2.4MΩ 2.7Ω 27Ω 270Ω 2.7kΩ 27kΩ 270kΩ 2.7MΩ 3.0Ω 30Ω 300Ω 3.0KΩ 30KΩ 300KΩ 3.0MΩ 3.3Ω 33Ω 330Ω 3.3kΩ 33kΩ 330kΩ 3.3MΩ 3.6Ω 36Ω 360Ω 3.6kΩ 36kΩ 360kΩ 3.6MΩ 3.9Ω 39Ω 390Ω 3.9kΩ 39kΩ 390kΩ 3.9MΩ 4.3Ω 43Ω 430Ω 4.3kΩ 43KΩ 430KΩ 4.3MΩ 4.7Ω 47Ω 470Ω 4.7kΩ 47kΩ 470kΩ 4.7MΩ 5.1Ω 51Ω 510Ω 5.1kΩ 51kΩ 510kΩ 5.1MΩ 5.6Ω 56Ω 560Ω 5.6kΩ 56kΩ 560kΩ 5.6MΩ 6.2Ω 62Ω 620Ω 6.2kΩ 62KΩ 620KΩ 6.2MΩ 6.8Ω 68Ω 680Ω 6.8kΩ 68kΩ 680kΩ 6.8MΩ 7.5Ω 75Ω 750Ω 7.5kΩ 75kΩ 750kΩ 7.5MΩ 8.2Ω 82Ω 820Ω 8.2kΩ 82kΩ 820kΩ 8.2MΩ 9.1Ω 91Ω 910Ω 9.1kΩ 91kΩ 910kΩ 9.1MΩ #generics #CommonPartsLibrary
  • Generic Capacitor
    A generic fixed capacitor ideal for rapid circuit topology development. You can choose between polarized and non-polarized types, its symbol and the footprint will automatically adapt based on your selection. Supported options include standard SMD sizes for ceramic capacitors (e.g., 0402, 0603, 0805), SMD sizes for aluminum electrolytic capacitors, and through-hole footprints for polarized capacitors. Save precious design time by seamlessly add more information to this part (value, footprint, etc.) as it becomes available. Standard capacitor values: 1.0pF 10pF 100pF 1000pF 0.01uF 0.1uF 1.0uF 10uF 100uF 1000uF 10,000uF 1.1pF 11pF 110pF 1100pF 1.2pF 12pF 120pF 1200pF 1.3pF 13pF 130pF 1300pF 1.5pF 15pF 150pF 1500pF 0.015uF 0.15uF 1.5uF 15uF 150uF 1500uF 1.6pF 16pF 160pF 1600pF 1.8pF 18pF 180pF 1800pF 2.0pF 20pF 200pF 2000pF 2.2pF 22pF 20pF 2200pF 0.022uF 0.22uF 2.2uF 22uF 220uF 2200uF 2.4pF 24pF 240pF 2400pF 2.7pF 27pF 270pF 2700pF 3.0pF 30pF 300pF 3000pF 3.3pF 33pF 330pF 3300pF 0.033uF 0.33uF 3.3uF 33uF 330uF 3300uF 3.6pF 36pF 360pF 3600pF 3.9pF 39pF 390pF 3900pF 4.3pF 43pF 430pF 4300pF 4.7pF 47pF 470pF 4700pF 0.047uF 0.47uF 4.7uF 47uF 470uF 4700uF 5.1pF 51pF 510pF 5100pF 5.6pF 56pF 560pF 5600pF 6.2pF 62pF 620pF 6200pF 6.8pF 68pF 680pF 6800pF 0.068uF 0.68uF 6.8uF 68uF 680uF 6800uF 7.5pF 75pF 750pF 7500pF 8.2pF 82pF 820pF 8200pF 9.1pF 91pF 910pF 9100pF #generics #CommonPartsLibrary
  • Generic Inductor
    A generic fixed inductor for rapid developing circuit topology. *You can now change the footprint and 3D model at the top level anytime you want. This is the power of #generics
  • Terminal
    Terminal
    An electrical connector acting as reusable interface to a conductor and creating a point where external circuits can be connected.
  • RMCF0805JT47K0
    47 kOhms ±5% 0.125W, 1/8W Chip Resistor 0805 (2012 Metric) Automotive AEC-Q200 Thick Film #forLedBlink
  • 875105359001
    10uF Capacitor Aluminum Polymer 20% 16V SMD 5x5.3mm #forLedBlink #commonpartslibrary #capacitor #aluminumpolymer #radialcan
  • CTL1206FYW1T
    Yellow 595nm LED Indication - Discrete 1.7V 1206 (3216 Metric) #forLedBlink
24 Seconds Shot Clock thumbnail
24-Second TTL Shot Clock with Up/Down BCD Counters and 7-Segment Display

Properties

Pricing & Availability

Distributor

Qty 1

Arrow

$4.34–$7.39

Digi-Key

$14.45–$17.49

LCSC

$17.53–$19.37

Mouser

$19.20

TME

$16.17

Verical

$4.62–$7.84

Assets

No assets added.

Controls