Difference between revisions of "D scan"

From Applied Optics Wiki
Jump to: navigation, search
(Feature requests)
(Action options / examples)
Line 16: Line 16:
  
 
       action webcam  
 
       action webcam  
           camera 1  
+
           camera 1             //camera ID no
           resolution 1280 720  
+
           resolution 1280 720   // resolution to open camera with
           grab
+
           grab                 // saves a frame from the camera
           display
+
           display               // displays a frame from the camera
 
       end  
 
       end  
  
 
       action scope  
 
       action scope  
           channels F1,F3  
+
           channels F1,F3       // use name of channel you want separated by commas
           ip 128.243.74.74  
+
           ip 128.243.74.74     // IP address of scope
 +
      end
 +
 
 +
 
 +
      action a2d
 +
          channel 0          // channel to grab
 +
          range 2            // this is card specific voltage range use comedi info to find range
 +
          n_samples 1        // samples to grab
 +
      end
 +
 
 +
      action mirror_pbp      // mirror scan point by point
 +
          axis 0 -1 1 .1      // axis number, start, stop, increment
 +
          tell_pos 2          // report position
 
       end
 
       end

Revision as of 09:15, 7 March 2016

this is a page to list feature requests, bugs and give usage examples for d_scan.


Feature requests

  • check if files exist - request permission to overwrite, action option to turn off checking
  • save scope mode (seg, RT etc) and number of avgs, number of segs to scope meta data file
  • save option to force saving in actions for live data plotting options for long scans
  • general scan option, with hardware type select
  • scope to switch to summed mode if averaging is on, then switch back to continuous at end.

Completed tasks

Bugs

Action options / examples

     action webcam 
         camera 1              //camera ID no
         resolution 1280 720   // resolution to open camera with
         grab                  // saves a frame from the camera
         display               // displays a frame from the camera 
     end 
     action scope 
         channels F1,F3       // use name of channel you want separated by commas
         ip 128.243.74.74     // IP address of scope
     end


     action a2d 
         channel 0           // channel to grab
         range 2             // this is card specific voltage range use comedi info to find range
         n_samples 1         // samples to grab
     end
     action mirror_pbp       // mirror scan point by point
         axis 0 -1 1 .1      // axis number, start, stop, increment
         tell_pos 2          // report position
     end