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 |
|---|
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.
harshal05
copilot
- Logic Gates (AND, OR, NOT, NAND, NOR)
- Flip-Flops (for state memory)
- Decoder (for floor selection)
- Counters (to track the current floor)
- Relays (for motor control)
- Sensors: Floor sensors and button inputs for each floor
Design Concept-
Floor Selection and Call Buttons:
- Each floor will have two buttons: one for calling the elevator to that floor and another inside the elevator for selecting the desired floor.
-
Floor Sensors:
- These will indicate the current floor of the elevator.
-
Motor Control:
- The motor will need two inputs: one for moving up and another for moving down. A relay system can be used to control the motor's direction based on the logic circuit's output.
-
Floor Indicators:
- LEDs can represent the current floor status and direction of movement.
Logic Design-
Counters: Use a binary counter to represent the current floor. The counter can increment or decrement based on the elevator's movement direction.
-
Logic Gates:
- Combine the input from the call and select buttons with the output of the floor sensors to control the direction of the elevator.
-
Flip-Flops:
- Store the call request from each floor and the direction of the last move to ensure the elevator responds to all requests efficiently.
-
Decoder:
- Use to light up the floor indicator LEDs based on the current counter output (current floor).
Connections-
Floor Selection Buttons:
- Connect each floor button to an input of a flip-flop (FF) to store the request until it's fulfilled.
-
Call Buttons:
- Similarly, connect call buttons to another set of FFs.
-
Motor Control:
- Use AND gates to combine the outputs of the counters, FFs, and sensors to control two relays: one for moving up and another for moving down.
- E.g., if FF for floor 2 call is set and current floor sensor (counter output) is less than 2, AND gate outputs to UP relay.
-
Floor Indicators:
- The counter's output should connect to a decoder to activate specific LEDs indicative of the current floor.
Simplified Example