From 3e8c0adc8d1edc8e0202e7371e9967232e1643df Mon Sep 17 00:00:00 2001 From: oliexdev Date: Sat, 20 Dec 2014 08:47:23 -0800 Subject: [PATCH] Updated Home (markdown) --- Home.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Home.md b/Home.md index 4b45ea3..60e9e99 100644 --- a/Home.md +++ b/Home.md @@ -113,12 +113,6 @@ After I finished the initializing I had to read the signals in the `loop()` func ```C ... -char port_control; -char port_digital_pinA; -char port_digital_pinB; - -int control_bit[4]; - int seg_raw_1_1[4]; int seg_raw_1_2[4]; int seg_raw_2_1[4]; @@ -145,6 +139,12 @@ void set_seg_raw(int cycle_n) And in the `loop()` function I read the ports and then store the signals depending on the cycle number with: ```C +char port_control; +char port_digital_pinA; +char port_digital_pinB; + +int control_bit[4]; + void loop() { ...