Engineer's Workbench
Project Overview
The Engineer's Workbench project involved designing and developing an integrated, multifunctional engineer's workbench using a Raspberry Pi 4. This bench was designed to facilitate extensive electronic testing and measurements, providing engineers with a comprehensive suite of tools in a single platform
Key Features
Multifunctional Tools: Included a voltmeter, ohmmeter, frequency measurement tools, and variable amplitude and frequency wave generators.
User-Friendly Interface: Designed a 2x16 LCD display and a rotary encoder for easy navigation and interaction with the measurement tools.
Versatile Measurement Capabilities: Implemented voltage dividers into comparators for voltage and resistance calculations, and developed frequency measurement tools through interrupt-driven timing of waveform edges.
Technical Details
Voltage and Resistance Calculations: Engineered using voltage dividers and comparators, allowing for precise voltage and resistance measurements.
Frequency Measurement: Developed tools that utilize interrupt-driven timing of waveform edges, enhancing the diagnostic capabilities of the workbench.
Wave Generators: Constructed variable amplitude and frequency wave generators using operational amplifiers, digital potentiometers, and PWM control on the Raspberry Pi. Included a sine wave generator based on a modified Wien bridge oscillator circuit.
Software Development: Programmed the interface and tool functionalities using Python, ensuring seamless integration and user experience.
Challenges and Solutions
Integration of Multiple Tools: Ensured seamless operation of all tools within a single platform by carefully planning the circuit design and coding structure.
User Interface Design: Focused on creating an intuitive and easy-to-use interface, incorporating user feedback to refine the navigation and display features.
Learning Outcomes
This project honed my skills in interface design, embedded systems programming, and electronic measurements. It also provided valuable experience in troubleshooting and integrating multiple functionalities within a single platform.
DAC DC Reference
Sallen Key Low Pass Filter DC Reference
DC Reference
The DC Reference being the first thing in our project we had a few different iterations. For the sake of complexity, I will focus on the 2 designs we had to choose between. We started with a simple Digital to Analog Converter (DAC). We designed a voltage divider with a 1000 ohm resistor and a digital potentiometer that we could vary using the Raspberry pi. By manipulating the the value of the digital potentiometer we could vary the voltage coming from the split in the divider. This design worked for the requirements placed for the project being able to get a voltage range from around 0.25-4.2v. We ultimately decided that due to the limit of the digital potentiometers enforced by the constraints of the project, we decided to go with another method.
The next design was a sallen key low pass filter. By using the filter with the pulse width modulation (PWM) from the pi we could manipulate the voltage from 0-3.3v by varying the duty cycle of the square wave. Essentially what this does it take the average voltage across the whole duty cycle. The higher the duty cycle, i.e. 100%, the higher the voltage and vice versa. The project requirements stated that the voltage outputted from the DC Reference needed to be 0-4v in .25v increments. Knowing that the range we were currently getting for this design was 0-3.3v, we added a non-inverting operational amplifier (OP AMP) to increase our range 0-4v to be within the specification required. Through meticulous testing and measuring of different duty cycles we were able to characterize and ensure the best possible accuracy of our reference voltage.
Voltmeter
To design the voltmeter we knew we need to design an Analog to Digital Converter (ADC). When researching for this a few design constraints we focused on were the amount of raspberry pi pins we were going to use and the accuracy we could get out of our system. So, ADCs like the flash ADC were not in consideration for our project. After we gathered a better understanding of what was required and what we wanted to achieve we went with a mix of successive bit approximation and using our DC Reference. By using a comparator OP AMP we could feed in a voltage that we know and the voltage we wanted to test multiple times. By using the successive bit approximation we could spend significantly less time testing every combination of voltage within our range and test by halving the amount each time. The range starts by testing if the input voltage is higher or lower than 2v. Depending on if it was higher or lower then it would move to 1v or 3v respectively and so on until it satisfied the .25v threshold. To ensure our voltmeter was able to test the difference in voltages across a component and not just a point voltage, we added a differential amplifier to essentially turn the original 2 test points into one. After significant testing we were able to confirm that the voltmeter worked as intended. We also were able to create a chart of what voltages would read as in our design and this can be seen in the appendix.
OHMmeter
The ohmmeter design was inspired by how we were creating the voltmeter. By using 1 of the 5 digital potentiometers we were allotted in the beginning of the project we could create 2 voltage dividers. In these 2 voltage dividers there would be 2 set resistors. Originally the values of these resistors were the same, but due to not being able to reach the desired range we had to make them separate values, but these values are values we knew. In one of the dividers we implemented the digital potentiometer which we had characterized and knew all the values that it would output for all 128 steps. Knowing this information we could simply check the voltage outputted by the side with the digital potentiometer to the side with the unknown resistor, the resistor we wanted to the get value of. For simplicity of this process we checked values individually at this point and did not implement something like the successive bit approximation. Checking each step of the digital potentiometer until the voltage had change from higher to lower on the output of the comparator we could get a pretty good idea on the value of the resistor. Knowing in the beginning that the values chosen for resistors in the dividers there was a conversion factor we had to do to get it to be the correct value.
NEgative voltage supply
The next steps in the project were to create the 2 waveform generators. For this we needed to create a negative voltage from the 12 volt supply we were given. In this process we were not allowed to use any Integrated Circuits (ICs). We researched methods for changing voltage from positive to negative and came across the rail splitter design. This design allowed us to changed the resistor values of R1 and R2 in the photo to control the voltages outputted at each terminal. For our project we actually want +/-6v for our OP AMPs so we went with the same resistor value for both.
Square wave generator
The square wave generator we were tasked with making was a fixed amplitude, variable frequency wave. The wave needed to be a 5v amplitude wave with the bottom of the wave on the 0v axis. The frequency for this wave needed to be able to vary from 100-10000Hz. This task was rather simple overall, but we learned quite a bit about OP AMPs. While designing the square wave the original OP AMPs we were given did not have a very high slew rate and ended up making our square waves trapezoidal. After coming across this issue the professor allowed us to switch the the TL08x series OP AMPs which had much higher slew rates and allowed for a cleaner square wave. The next issue we had were rail to rail limitations of the OP AMPs. While we were using +/-6v rails for the OP AMPs, when we were trying to invert it to amplify the wave we had issues getting it to reach the full 0-5v range due to these rail to rail limitations. Eventually with enough play we could get it close enough to the range requested. If given the chance to improve the design we would have used a higher voltage supply like a 15v supply to better get the entire range of the square wave. The design we ended with was a PWM input to an inverting OP AMP. This took the standard variable 0-3.3v square wave and amplified to to a variable 0-5v square wave.
sine wave generator
The sine wave generator was the most difficult and most time consuming part of the whole project. We had many iterations of trials and errors trying to get the perfect design to fit the requirements. We started by trying to manipulate our DC Reference to make a sine wave like wave form by changing the voltage super quick, but unfortunately we were not able to get it to change quick enough to meet the requirements. Looking back we could have added filters to limit the amount of voltage steps we needed to go through but in the end we did not use this method. The method we actually went with was using a wein bridge oscillator and 4 digital potentiometers. We carefully tested different methods of using this oscillator with different capacitors to get the range we needed. After getting the capacitors to have the range we wanted we needed to be able to control the frequency and amplitude. To control this we used 2 resistors that controlled the frequency and 2 that controlled the amplitude. By taking each of the 4 potentiometers and testing every possible value of each we were able to create a lookup table. This table allowed us to send a desired value of each and have it find the values the potentiometers needed. By using this method we were able to create a sine wave with a range of 0-.5v to 0-5v and have a frequency of 1000-10000Hz.
Frequency read
At this point in the project we got a really good understanding of how we wanted to try and tackle this task. This is one of the only parts of the project I would say we nailed in the first iteration. By using a comparator OP AMP we could test a wave's frequency by checking how many times the comparator triggers. Becuase we knew that the value of the wave had to be higher than .5v we chose a value under that to compare to. The incoming wave would go in to one side of the comparator and the other side of the comparator had a .4v input. Using some interrupts and math we could count the amount of times it crossed the threshold and back calculate out the frequency. Overall this worked exactly how we wanted and only had to make minor changes to get it to be as accurate as possible.
LCD color change
This was a really simple task. We just had to add a selection for the user to change the color of the display and the color change had to be random. To accomplish this we simply created a function that when selected set the values of r, g, and b randomly individually. This accomplished the LDC color change section.
User interface (UI)
The user interface was a really important part of our design. This was something we continuously worked on improving throughout the semester. Knowing the we would constantly be adding to this section it was important to try and create a modular design. We decided to go with a nested list design. By using nested list we could add and remove options inside of each list individually. This also allowed use to simply put in code when this list item is selected run this function. Also because we were only using a 2x16 LCD display we couldn't display a lot at a time. So we would display the list they are inside and the option they are currently on. By turning the rotary encoder they could go to the next item and by clicking the encoder they could select the item they are on.
Appendix
DAC characterization
Voltmeter testing the ranges of values and what they outputted