Package braun_ :: Module braun_help

Source Code for Module braun_.braun_help

 1  # FIX: It might be nicer for this content to go in a separate HTML file, but then the application needs to be able to find it (e.g. in /usr/local/share/braun), so for now we just include it here. 
 2  TEXT = """ 
 3   
 4  <html> 
 5  <body bgcolor="#000000"> 
 6   
 7  <font color="#aaaaaa"> 
 8  <h1 align="center">Braun Help</h1> 
 9   
10  <p> 
11  Braun is a simple OSC data visualiser. It is particularly useful for visualising the proportional relationship between multiple data streams. 
12  </p> 
13   
14  <p> 
15  To use the software, you need to establish an OSC connection to Braun on UDP port 4444. Once the connection has been established, any incoming OSC data that has a type of 'i' (integer) or 'f' (float) will be plotted on an animated graph. 
16  </p> 
17   
18  <p> 
19  You can use any OSC address string you like, and the first 10 characters of this will be displayed by Braun to indicate the source of the value. 
20  </p> 
21   
22  <p> 
23  All incoming data will is scaled according to the highest value received. Hence, Braun will continuously adapt to the range of the incoming data. 
24  </p> 
25   
26  <h3>Export the graph as an image</h3> 
27   
28  <p> 
29  To export the graph as an image click File->Save as... 
30  </p> 
31   
32   
33  </font> 
34   
35  </body> 
36   
37  </html> 
38   
39  """ 
40