Skip to content

onerobotics/vqlog.js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vqlog

vqlog is a tool for analyzing VQLOGs from FANUC Visual Line Tracking applications.

Usage:

  var vqlog = require("vqlog");
  var myLog = vqlog.fromPath('./vqlog.txt');

  console.log('Duration: ' + myLog.duration());
  console.log('Entries: ' + myLog.entries);

  // filter by event type
  console.log('Acks: ' + myLog.entriesByEventType('Acknowledgement'));

Examples:

There are a couple examples in the /examples directory. Use the http-server node package to serve the examples:

   > npm install -g http-server
   > http-server examples

Open http://localhost:8080 in your browser.

timeline example

About

FANUC Visual Line Tracking VQLOG analyzer

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published