home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1996 September / pcwk_09_96.iso / demo / wgelectr / pk51demo / files.2 / EXAMPLES / TRAFFIC / TRAFFIC.INI < prev    next >
Text File  |  1993-10-07  |  551b  |  22 lines

  1. load traffic         /* load application program       */
  2. include ds51.ini     /* process standard DS51.INI file */
  3. /* define watch variables */
  4. ws red   
  5. ws yellow
  6. ws green 
  7. ws stop  
  8. ws walk  
  9. /* set P1.5 to zero:  Key Input */
  10. PORT1 &= ~0x20;
  11.  
  12. /* define a debug function for the pedestrian push button */
  13.  
  14. signal void button (void)  {
  15.   PORT1 |= 0x20;       /* set Port1.5   */
  16.   twatch (50000);      /* wait 50 ms    */
  17.   PORT1 &= ~0x20;      /* reset Port1.5 */
  18. }
  19.  
  20. /* define F4 key as call to button () */
  21. set F4="button ()"
  22.