Changeset 118 in tmcsimulator for trunk


Ignore:
Timestamp:
10/14/2017 11:07:08 AM (9 years ago)
Author:
jtorres
Message:

Highways.java: hardcoded ip to JD's laptop in writeToFep(). LoopDetector?.java: currently hardcoded 'red' values in constructor. application.properties added the console driver custom config. Added trunk/config/console_driver_config.properties

Location:
trunk
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/atmsdriver/model/Highways.java

    r114 r118  
    211211    public void writeToFEP() { 
    212212        try { 
    213             Socket sock = new Socket(FEPHostName /*"192.168.251.130"*/, 8080); 
     213            Socket sock = new Socket(/*FEPHostName*/ "192.168.251.130", 8080); 
    214214            PrintWriter out = new PrintWriter(sock.getOutputStream(), true); 
    215215            out.println(this.toXML()); 
  • trunk/src/atmsdriver/model/LoopDetector.java

    r114 r118  
    3434         
    3535        /* Init dynamic data */ 
    36         this.vol = 100; 
     36        this.vol = 0; 
    3737        this.spd = 0; 
    38         this.occ = 100; 
     38        this.occ = 0; 
    3939    } 
    4040     
  • trunk/src/tmcsim/application.properties

    r114 r118  
    1 #Sat, 14 Oct 2017 11:10:53 -0700 
     1#Sat, 14 Oct 2017 12:09:29 -0700 
    22 
    3 Application.revision=110 
     3Application.revision=114 
    44 
    55Application.buildnumber=52 
Note: See TracChangeset for help on using the changeset viewer.