Schaltet den DC DC Converter ein. Mit dem POTI sollte die Spannung nun auf 10 V gestellt werden. (zB am R6 messen ) Nicht darüber einstellen, sonst kann es zum Schwingen des DC DC Converters kommemn !
Dependencies: mbed
main.cpp@5:cea888ffe3e5, 2017-05-13 (annotated)
- Committer:
- Enenkel
- Date:
- Sat May 13 09:46:13 2017 +0000
- Revision:
- 5:cea888ffe3e5
- Parent:
- 3:8dab5659d872
Testet BERTl17 schaltet die Motor Spannung ein. Sie ist mit dem POTI auf 10 V zu stellen. (nicht mehr sonst schwingt der DCDC Converter !)
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Enenkel | 0:a8a0195ed7dc | 1 | /*********************************** |
Enenkel | 3:8dab5659d872 | 2 | name: BERTL_16 12V on 21.4.2016 |
Enenkel | 1:0f7c167a4f97 | 3 | author: Gottfried Enenkel HTL BULME |
Enenkel | 1:0f7c167a4f97 | 4 | email: ene@bulme.at |
Enenkel | 0:a8a0195ed7dc | 5 | description: |
Enenkel | 3:8dab5659d872 | 6 | Die 12 V und 5 V werden eingeschalten |
Enenkel | 1:0f7c167a4f97 | 7 | |
Enenkel | 0:a8a0195ed7dc | 8 | |
Enenkel | 1:0f7c167a4f97 | 9 | ***********************************/ |
Enenkel | 1:0f7c167a4f97 | 10 | #include "mbed.h" |
Enenkel | 1:0f7c167a4f97 | 11 | |
Enenkel | 1:0f7c167a4f97 | 12 | // ************ DEKLARATIONEN ************** |
Enenkel | 3:8dab5659d872 | 13 | DigitalOut Von (P2_13); // Motor Spannung ab BERTL15 nötig ! |
Enenkel | 1:0f7c167a4f97 | 14 | |
Enenkel | 0:a8a0195ed7dc | 15 | |
Enenkel | 1:0f7c167a4f97 | 16 | // ************* Hauptprogramm ************ |
Enenkel | 1:0f7c167a4f97 | 17 | int main() { // Start Hauptprogramm |
Enenkel | 1:0f7c167a4f97 | 18 | Von=1; // Motor Spannung EIN |
Enenkel | 3:8dab5659d872 | 19 | |
Enenkel | 1:0f7c167a4f97 | 20 | } // Ende des Hauptprogrammes |
Enenkel | 1:0f7c167a4f97 | 21 | |
Enenkel | 1:0f7c167a4f97 | 22 | // ************** ENDE ************* |
Enenkel | 1:0f7c167a4f97 | 23 | |
Enenkel | 1:0f7c167a4f97 | 24 | |
Enenkel | 1:0f7c167a4f97 | 25 | |
Enenkel | 1:0f7c167a4f97 | 26 | |
Enenkel | 1:0f7c167a4f97 | 27 | |
Enenkel | 1:0f7c167a4f97 | 28 |