My college requires me to submit a mini project for my measurements lab grading and it just says "a project that utilizes measurement systems"
So first thing that came to my mind is a Voltage Measurement Circuit. I researched a bit and decided id be measuring voltages upto a maximum of 20V so I'd need a corresponding voltage divider circuit. Right now I have implemented it using a 10k and 2k resistor for my wemos d1 r2 board since its maximum input voltage is 3.3V. I would also like to add a dh11 temperature and humidity sensor to the project as an additional feature and an oled display using i2c for displaying the voltage, temperature and humidity. Firstly im unsure about the resistor values of the divider circuit I've chosen. Secondly, I'm confused between using an Arduino uno R3 or the wemos d1 r2 itself for the project as the arduino has more analog input pins compared to the wemos, which has just one analog input. Id also like to know what values to choose for the divider circuit if i replace the wemos with an uno.
The first sensor you mentioned seems perfect for my case. So for my wemos the input shouldn't exceed 16.5V. Like that any current specifications for the same?
Submit a mini project.
A project that utilizes measurement systems.
End of black ink printed on the paper.
.
.
Are you sure that you don't have any additional information?
I can't believe that there is not more information !
Maybe a part of this project is that you got only these few very poor words
and a part of this graduation is:
Are you able to get all the missing information by 100% self-initiative?
Like:
Which physical quantities should be measured?
With what precision should these quantities be measured?
If you have any additional information that describes some more details about the criteria which is used to evaluate and grade your project.
You are asking good questions. They indicate that you recognised that you have to learn more basics about it.
Here is a video-channel that explains such things very good. Voltage, current, resistance etc.
Well unfortunately our university isnt the best, I checked all their docs and that was all the info i could get. I checked with seniors and they said pretty much any thing you submit gets approved. But I dont want to simply slack off on it. I hope you understand
Yeah i pretty much know the basics as a sophomore in Electrical Engineering, but im still learning when it comes to arduino, as practical application is different from theoretical knowledge. Im still trying to actively learn Arduino though
There is one project that is almost ready to use that goes beyond a simple DC-voltage measuring.
It is utilising an arduino uno as an oscilloscope which displays the measuring on a computer over the serial interface.
From your question
I got the impression you are a newcomer about electronics.
I will support you in learning arduino and in electronics. But I want to write my honest thoughts:
Your question "unsure about the resistor-values" seems like you still need some practical exercises in doing calculations.
Power-dissipation is P = U * I
and as you can calculate voltage U = R * I
Power-dissipation can be calculated as P = R * I * I which is
P = R * I²
The resistors can stand a maximum power-dissipation.
The usual resistors for breadboard tinkering have a maximum of 0,25W power-dissipation.
Some of them only 0,1W
And with this you can calculate what the minimum resistance shoud be to keep the current small to not thermally overload the resistors in your voltage-divider.
The next aspect is ideally measuring should not cause any load.
Which means using a high resistance. Super-high resistance means catching up electromagnetic noise.
So you have to make a comrpomise between highest possible resistance and not catching up a relevant amount of electromagnetic noise.
The ADC-input is a load too. This means if you use a very high resistance voltage-divider connecting this to the ADC-input will influence the measuring too.
These are all aspects that are there. But practical measuring is not that complicated as this sounds.
Additionally to your project you could add some calculation-examples to demonstrate that for certain values the influence is small.
Follow the example code that comes with the library or
run some tutorials for the hardware selected.
If you are happy with the results of the tutorials you can merge these to your project.