Guest LinTec Posted January 26, 2014 at 09:25 AM Share Posted January 26, 2014 at 09:25 AM Moin zusammen, ich muss leider eine etwas einfache Frage an euch stellen, kann mir bitte jemand sagen, wie der Aufruf von "industrial_quad_relay_get_monoflop" in einem C Programm aussieht? THX a lot! Quote Link to comment Share on other sites More sharing options...
AuronX Posted January 26, 2014 at 12:20 PM Share Posted January 26, 2014 at 12:20 PM Wenn ich die Frage richtig verstehe, dann steht die Antwort hier: http://www.tinkerforge.com/de/doc/Software/Bricklets/IndustrialQuadRelay_Bricklet_C.html#industrial_quad_relay_get_monoflop Quote Link to comment Share on other sites More sharing options...
Guest LinTec Posted January 26, 2014 at 08:41 PM Share Posted January 26, 2014 at 08:41 PM Moin, das stimmt zwar, aber leider bin ich nicht so Fit darin, dass ich direkt verstehen wie das aufzurufen ist. Ich verstehe nur, dass die drei letzten Parameter zurück gegeben werden sollen, aber wie die Syntax in C aussehen muss, damit ich via printf da etwas zurück bekommen würde verstehe ich noch nicht so ganz? Vielleicht könnt ihr mir helfen? Quote Link to comment Share on other sites More sharing options...
photron Posted January 27, 2014 at 09:37 AM Share Posted January 27, 2014 at 09:37 AM industrial_quad_relay_get_monoflop() erwartet Pointer auf Variablen in die es dann die drei Werte schreiben kann. Hier ein Beispiel für Pin 0: uint16_t value; uint32_t time uint32_t time_remaining; industrial_quad_relay_get_monoflop(&iqr, 0, &value, &time, &time_remaining); printf("value %u, time %u, time_remaining %u\n", value, time, time_remaining); Quote Link to comment Share on other sites More sharing options...
Guest LinTec Posted January 27, 2014 at 11:14 AM Share Posted January 27, 2014 at 11:14 AM Ich danke dir vielmals! Ich war schon fast auf dem richtigen Weg In meinem Code hatte nur folgende Zeile gefehlt: industrial_quad_relay_get_monoflop(&iqr, 0, &value, &time, &time_remaining); Vielen Dank! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.