Package braun_ :: Module config

Source Code for Module braun_.config

 1  "Braun configuration file" 
 2   
 3  VERSION = '0.5.9' 
 4  OSC_SERVER_PORT = 4444 
 5  MAX_LINES = 5 
 6  FPS = 10 
 7  BUFFERSIZE = 256 
 8  SCALE_MULTIPLIER = 0.07 
 9  SCALE_TOP = 196 * SCALE_MULTIPLIER 
10  SCALE_BOTTOM = -76 * SCALE_MULTIPLIER 
11  SCALE_RANGE = SCALE_TOP - SCALE_BOTTOM 
12  SCALE_Y_OFFSET = -4.8 
13  SCALE_X_OFFSET = -1.0 
14  GLOBAL_MAXIMUM = 100.0 # These are used to tell the GUI how to label the scale 
15  GLOBAL_MINIMUM = 0.0 
16  N_TICS = 5 
17  TIC_DISTANCE = (GLOBAL_MAXIMUM - GLOBAL_MINIMUM) / (N_TICS - 1) 
18  TIC_SCALE_MULTIPLIER = 2.5 
19  RING_BUFFER_SIZE = 600 
20  SMOOTHING = 12 
21  ID_ZOOM_TO_FIT = 100 
22  LINE_OPACITY = 120 # Sets the transparency of the lines 0-255 
23  LINE_WIDTH = 2 # Sets the width of the linew 
24  GRAPH_WIDTH = 9 # Sets the width of the graph (rectangle) 
25  NAMESPACE_X_OFFSET = 0 
26  NAMESPACE_Y_OFFSET = 15 
27  NAMESPACE_X_HOPSIZE = 2.5 
28  NAMESPACE_NUMBER_PADDING = 3.5 
29  FONT_SIZE = .5 
30  Y_AXIS_NUMBER_PRECISION = 3 
31  ANTIALIASED_LINES = True 
32