Index: /branches/FEPSimulator/FEPSim.cpp
===================================================================
--- /branches/FEPSimulator/FEPSim.cpp	(revision 113)
+++ /branches/FEPSimulator/FEPSim.cpp	(revision 114)
@@ -72,5 +72,12 @@
             fsa.msg.message[2 + aa] = 0x0d;
             fsa.msg.message[3 + aa] = 0xff;
-   // info
+            
+            for(int l = 0; l < fsa.msg.message_len + 2; l++)
+            {
+                printf("%02X", (unsigned char) fsa.msg.message[l]);
+            }
+            printf("\n");
+            
+            // info
             fsa.info.poll_error_count = 0;
             fsa.info.poll_user_info1 = ldsMap.at(index)->drop; // drop number
Index: /branches/FEPSimulator/DataPacker.cpp
===================================================================
--- /branches/FEPSimulator/DataPacker.cpp	(revision 113)
+++ /branches/FEPSimulator/DataPacker.cpp	(revision 114)
@@ -37,4 +37,5 @@
 
     return msg;	
+    return msg;
 }
 
Index: /branches/FEPSimulator/nbproject/private/private.xml
===================================================================
--- /branches/FEPSimulator/nbproject/private/private.xml	(revision 107)
+++ /branches/FEPSimulator/nbproject/private/private.xml	(revision 114)
@@ -8,7 +8,11 @@
     <open-files xmlns="http://www.netbeans.org/ns/projectui-open-files/2">
         <group>
+            <file>file:/Users/jtorres/tmcsimulator/branches/FEPSimulator/network.h</file>
+            <file>file:/Users/jtorres/tmcsimulator/branches/FEPSimulator/NetworkReader.cpp</file>
+            <file>file:/Users/jtorres/tmcsimulator/branches/FEPSimulator/DataPacker.cpp</file>
             <file>file:/Users/jtorres/tmcsimulator/branches/FEPSimulator/FEPSim.cpp</file>
             <file>file:/Users/jtorres/tmcsimulator/branches/FEPSimulator/Main.cpp</file>
-            <file>file:/Users/jtorres/tmcsimulator/branches/FEPSimulator/NetworkReader.cpp</file>
+            <file>file:/Users/jtorres/tmcsimulator/branches/FEPSimulator/fep.h</file>
+            <file>file:/Users/jtorres/tmcsimulator/branches/FEPSimulator/FEPSim.h</file>
         </group>
     </open-files>
Index: /trunk/src/tmcsim/application.properties
===================================================================
--- /trunk/src/tmcsim/application.properties	(revision 103)
+++ /trunk/src/tmcsim/application.properties	(revision 114)
@@ -1,5 +1,5 @@
-#Thu, 12 Oct 2017 01:19:36 -0700
+#Sat, 14 Oct 2017 11:10:53 -0700
 
-Application.revision=101
+Application.revision=110
 
-Application.buildnumber=51
+Application.buildnumber=52
Index: /trunk/src/atmsdriver/ConsoleDriver.java
===================================================================
--- /trunk/src/atmsdriver/ConsoleDriver.java	(revision 110)
+++ /trunk/src/atmsdriver/ConsoleDriver.java	(revision 114)
@@ -150,4 +150,5 @@
         }
         System.out.println("");
+        highways.writeToFEP();
     }
     
Index: /trunk/src/atmsdriver/model/Station.java
===================================================================
--- /trunk/src/atmsdriver/model/Station.java	(revision 109)
+++ /trunk/src/atmsdriver/model/Station.java	(revision 114)
@@ -50,6 +50,32 @@
         this.routeNumber = hwy;
 
-        this.MLTotVol = 0;
-        this.OppTotVol = 0;
+        this.MLTotVol = getMLTotVol();
+        this.OppTotVol = getOPPTotVol();
+    }
+    
+    private int getMLTotVol()
+    {
+        int mlTotVol = 0;
+        for(LoopDetector loop : loops)
+        {
+            if(loop.loopLocation.startsWith("ML"))
+            {
+                mlTotVol += loop.vol;
+            }
+        }
+        return mlTotVol;
+    }
+    
+    private int getOPPTotVol()
+    {
+        int oppTotVol = 0;
+        for(LoopDetector loop : loops)
+        {
+            if(loop.loopLocation.startsWith("OP"))
+            {
+                oppTotVol += loop.vol;
+            }
+        }
+        return oppTotVol;
     }
 
@@ -143,6 +169,6 @@
                 // vol and occ along with each color.  Then the updateLoop call
                 // below could be update(dotColor.volume, dotColor.occ, speed)
-                int volume = 0;
-                int occ = 0;
+                int volume = 10;
+                int occ = 10;
                 int speed = 0;
                 loop.updateLoop(volume, occ, speed);
Index: /trunk/src/atmsdriver/model/Highways.java
===================================================================
--- /trunk/src/atmsdriver/model/Highways.java	(revision 103)
+++ /trunk/src/atmsdriver/model/Highways.java	(revision 114)
@@ -211,5 +211,5 @@
     public void writeToFEP() {
         try {
-            Socket sock = new Socket(FEPHostName, FEPPortNum);
+            Socket sock = new Socket(FEPHostName /*"192.168.251.130"*/, 8080);
             PrintWriter out = new PrintWriter(sock.getOutputStream(), true);
             out.println(this.toXML());
Index: /trunk/src/atmsdriver/model/LoopDetector.java
===================================================================
--- /trunk/src/atmsdriver/model/LoopDetector.java	(revision 103)
+++ /trunk/src/atmsdriver/model/LoopDetector.java	(revision 114)
@@ -22,6 +22,6 @@
     
     /* dynamic data */
-    private int vol;
-    private int occ;
+    public int vol;
+    public int occ;
     private int spd;
     
@@ -34,7 +34,7 @@
         
         /* Init dynamic data */
-        this.vol = 0;
+        this.vol = 100;
         this.spd = 0;
-        this.occ = 0;
+        this.occ = 100;
     }
     
