-
VU Meter Progrees
10/26/2024 at 17:52 • 0 comments -
The VU Meter
10/15/2024 at 20:50 • 0 comments -
The Tension Sensors
10/09/2024 at 15:41 • 0 comments -
The Counter Final Look
10/06/2024 at 15:14 • 0 comments -
The Counter
10/05/2024 at 19:34 • 0 comments -
The Counter
10/02/2024 at 10:54 • 0 commentsA wonderful counter project is described by the author on his page.
http://leoniv.diod.club/projects/audio/e-004/e-004_counter/e-004_counter.html
I'm planning the following changes to his design:
- Replacing the microcontroller with STM32
- Removing all unnecessary connectors from the board. Since the new system will use a serial interface for communication between the nodes
- Using a more standard JTAG connector
-
Servo Motor Assembly
09/12/2024 at 07:57 • 0 comments -
Servo Motor Board
09/10/2024 at 11:03 • 0 commentsThe final solution of the servo motor control board is based on the following solutions.
- Minimum number of pins on the connector from the control board. In which besides `GND` and +24V, there is a movement direction signal `CW` or `CCW`. And an end-of-motion signal `END`. The END signal should allow the control system to register error situations -- for self-diagnosis.
- The control board must control the 24V voltage to quietly turn on the system.
- The board must not contain a micro-controller.
Despite the simplicity of the board, I performed a PI/SI simulation to evaluate the result.
-
Considering Cross Board Design
08/04/2024 at 13:42 • 0 commentsIf 32 pin connectors are used, the pins will be more than sufficient. I assume to divide all pins into three groups.
- Power - power and ground lines of analog circuitry and control and switching system: -+15V +5V. In this case, use both sides of the connector, that is, two pins per signal.
- Control - control lines from components located on the motherboard. Each such line can include a relay. All control lines occupy a fixed number of pins on all connectors. However, while some of them come from one output per board (shared), others are dedicated exclusively to a particular board (specific).
- Special - the signal lines of a specific board. They are organized differently for different boards.
In addition to components for generating control signals, the motherboard has its own set of relays for switching specific signals of the tape recorder.
For example HF bias generator. It does not use -15V however its pin-out in the power supply section is the same as all other boards.
The control section only uses specific signals, the other pins remain unused.
-
Servo motor board design considerations
08/02/2024 at 10:58 • 0 commentsA board from another developer uses a three-pin connector. This is a very simple and inexpensive solution. The pin-out of the connector is shown below.
- GND - the ground for power and signal
- +24V - the power for the servomotor
- DIR - the direction signal: 0 - rotate CW, 1 - rotate CCW
The motor stops by itself when the marker reaches the optical sensor.
The disadvantages of this are:
- The control controller has no status from the servo motor;
- If the device is suddenly de-energized, the servo motor will start moving in the default direction when power is restored. This somewhat makes the process of powering up the device a bit daunting for the user
Solution 1 - With RS485
For more complete control you can use RS485 interface. Then there will be a pinout.
- GND - power ground
- +24V - power
- A - RS485
- B - RS485
However, this will require a microcontroller and interface converter to be installed on the board. This makes the construction more expensive.
Solution 2 - With I2C
It will be a little cheaper if you use I2C interface.
- GND - power ground
- +24V - power
- GND - signal ground
- SCL - I2C
- SDA - I2C
Solution 2 - Passive
In this case only the motor driver is installed on the board. Then the pinout will be as follows.
- GND - power ground
- +24V - power
- GND - signal ground
- M1 - motor in1
- M2 - motor in2
- S1 - sensor 1
- S2 - sensor 2
Conclusion
Tough choice considering the connectors and wires cost their money too. However, the RS485 option looks like the most noise-protected and therefore reliable option.