Diskussion:Sensorinbetriebnahme mit Arduino und Simulink: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Keine Bearbeitungszusammenfassung |
Keine Bearbeitungszusammenfassung |
||
| (16 dazwischenliegende Versionen von 2 Benutzern werden nicht angezeigt) | |||
| Zeile 5: | Zeile 5: | ||
| 1 || 03.03.26 || | | 1 || 03.03.26 || | ||
* Send the signed contract to administration. | * Send the signed contract to administration. | ||
* Safety briefing | * Safety briefing | ||
* Workplace preparation (login, etc.) | * Workplace preparation (login, etc.) | ||
| Zeile 12: | Zeile 13: | ||
* Transponder issuance | * Transponder issuance | ||
* Measure Weight with Simulink | * Measure Weight with Simulink | ||
| | | A || Done || | ||
*Mass measurement using HX711 implemented in Arduino and Simulink. | |||
*Mass measurement using HX711 implemented in Arduino fully and partially in Simulink. | |||
|- | |- | ||
| 2 || 10.03.26 || | | 2 || 10.03.26 || | ||
| Zeile 20: | Zeile 23: | ||
* Add button like a real Weighing Scale. See chapter [[DMS_load_cell_with_measuring_amplifier_HX711AD#Requirements|requirements]]. | * Add button like a real Weighing Scale. See chapter [[DMS_load_cell_with_measuring_amplifier_HX711AD#Requirements|requirements]]. | ||
* Document progress within your [[DMS_load_cell_with_measuring_amplifier_HX711AD|article]]. | * Document progress within your [[DMS_load_cell_with_measuring_amplifier_HX711AD|article]]. | ||
|| A || | || A || Done || | ||
*On/Off button logic implemented (Arduino complete, Simulink partial). | *On/Off button logic implemented (Arduino complete, Simulink partial). | ||
* Simulink model saved to SVN. | |||
*Documentation of simulink model is in progress | |||
|- | |- | ||
| 3 || 17.03.26 || | | 3 || 17.03.26 || | ||
| Zeile 30: | Zeile 35: | ||
* Use the LCD-Display and order an I2C-Segment-Display (A). | * Use the LCD-Display and order an I2C-Segment-Display (A). | ||
* Meet all the [[DMS_load_cell_with_measuring_amplifier_HX711AD#Requirements|requirements]] (B). | * Meet all the [[DMS_load_cell_with_measuring_amplifier_HX711AD#Requirements|requirements]] (B). | ||
|| A || | || A || Done || | ||
*LCD display implemented in Arduino. Tare button | *LCD display implemented in Arduino and in simulink. | ||
*Button added both for Tare and power button | |||
*Documentation in progress in wiki | |||
|- | |- | ||
| 4 || 24.03.26 || | | 4 || 24.03.26 || | ||
| Zeile 42: | Zeile 49: | ||
* Use the software of [[Escape_Game:_Die_Bombe|this project]] as a starting point. Weight cell and LCD-Display are working fine. | * Use the software of [[Escape_Game:_Die_Bombe|this project]] as a starting point. Weight cell and LCD-Display are working fine. | ||
* Document progress within your [[DMS_load_cell_with_measuring_amplifier_HX711AD|article]] (A). | * Document progress within your [[DMS_load_cell_with_measuring_amplifier_HX711AD|article]] (A). | ||
|| B || | || B || Done || | ||
* Each button has to be connected to an [[Arduino:_Interrupts|interrupt]]. (Done) | |||
* The button has to be debounced in the ISR. (Done) | |||
* Please comment every source code line. (Done) | |||
* Add a [[Header_Beispiel_für_C|header]] to your source. (Done) | |||
* Use an recursive average filter for calculation of the weight. (Done) | |||
* Calculate the standard deviation to decide if the measurement is constant (threshold). (Done) | |||
*resused the simulink weighing scale model from Die_Bombe and interfaced it with my custom build LCD and now both model work together. | *resused the simulink weighing scale model from Die_Bombe and interfaced it with my custom build LCD and now both model work together. | ||
*Implemented Tare button in simulink, it is working but still testing the stability when the button is pressed. | *Implemented Tare button in simulink, it is working but still testing the stability when the button is pressed. | ||
* | * Document progress within your [[DMS_load_cell_with_measuring_amplifier_HX711AD|article]]. ( In progress with it but not done yet) | ||
* | |- | ||
| 5 || 31.03.26 || | |||
* Investigate the timing. What function is consuming what time? | |||
* Do not calculate the mean. Use the LPF-result instead. | |||
* Calculate the STD from the last 5 values. | |||
* Finish this task ASAP so you can work with the next sensor. | |||
|| A || Done || | |||
* Done. This is the function that was casuing the slowness (get_units(15)) The sample amount was reduced and the system responded better but i will now implement the next task on the codes which should make the system even more responsive. | |||
* All tasks have been implemented today and the system is very responsive but fully in arduino. | |||
* The Simulink modeling is working but not all functions are fully implemented( Power button and Buzzer). | |||
|- | |||
| 6 || 14.04.26 || | |||
* stable: ist calculatet late | |||
* save data to .mat file (time in s, weigth in g, real weight in g) for further analysis | |||
|| A || Done || The .mat file has been saved in the project workspace and versioned in SVN for further analysis | |||
|- | |||
| 7 || 28.04.26 || | |||
* Ask Mr. Ebmeyer to borrow a luxmeter as a reference (e.g. from Prof. Meyer) | |||
* Measure the values and the reference to calibrate the characteristic curve | |||
* use MATLAB regression app | |||
* compare the characteristic curve in the datasheet to the selfmade | |||
* Write your new [[Ambient_Light_Lux_Sensor_VEML7700|article]]. | |||
|| A || In Progress || | |||
* I have received the Luxmeter from Mr Ebmeyer | |||
* Started writing the wiki article | |||
*Data have been taken fo a fixed (Gain 1/8,Integration Time = 100ms) and graph compared to the data sheet which showed similarity but although the datasheet graph used Log-log graph but we can see similar pattern. | |||
|- | |||
| 8 || 30.04.26 || | |||
* Make a table for every combination of Gain an Integration Time. | |||
* Measure the ALS raw for every kombination. | |||
* Save the Table in your article. | |||
* What Lux Value should be measured in which combination (Gain/IT)? | |||
* Measure the values and the reference to calibrate the characteristic curve for every combination (Gain/IT). | |||
* use MATLAB regression app to fit the curves. | |||
* compare the characteristic curve in the datasheet to the selfmade | |||
* Write your new [[Ambient_Light_Lux_Sensor_VEML7700|article]]. | |||
|| A || In Progress || | |||
* The table has been created and all the raw ALS values are entered based on every combination of the Gain and Integration Time. | |||
*Data have been taken fo a fixed (Gain 1/8,Integration Time = 100ms) and graph compared to the data sheet which showed similarity but although the datasheet graph used Log-log graph but we can see similar pattern. | |||
* Wiki article is updated with the data collected and the graph plotted to show their relationship | |||
|} | |} | ||
Aktuelle Version vom 5. Mai 2026, 14:41 Uhr
| # | date | plan for this week | Priority | progress | Comment |
|---|---|---|---|---|---|
| 1 | 03.03.26 |
|
A | Done |
|
| 2 | 10.03.26 |
|
A | Done |
|
| 3 | 17.03.26 |
|
A | Done |
|
| 4 | 24.03.26 |
|
B | Done |
|
| 5 | 31.03.26 |
|
A | Done |
|
| 6 | 14.04.26 |
|
A | Done | The .mat file has been saved in the project workspace and versioned in SVN for further analysis |
| 7 | 28.04.26 |
|
A | In Progress |
|
| 8 | 30.04.26 |
|
A | In Progress |
|