From fc25e2f5069661f181cc65212436044d5282c4e2 Mon Sep 17 00:00:00 2001 From: Siegfried Kienzle Date: Tue, 28 Mar 2017 06:34:23 +0200 Subject: [PATCH] remove logical bug --- V1/switch.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/V1/switch.c b/V1/switch.c index 1965736..0ac0d12 100644 --- a/V1/switch.c +++ b/V1/switch.c @@ -76,10 +76,9 @@ int main() reserve(PIN06); reserve(PIN01); reserve(PIN11); - voltage(PIN06, V0); - voltage(PIN01, V33); inOrOut(PIN01, OUT); inOrOut(PIN11, IN); - + voltage(PIN06, V0); + voltage(PIN01, V33); return 0; }