-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtab6.py
59 lines (44 loc) · 2.37 KB
/
tab6.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import dash
import dash_daq as daq
from dash import dcc
from dash import html
import tkinter as tk
import sqlite3 as sql
import plotly.graph_objs as go
from dash.dependencies import Input, Output
from server import app
import base64
def tab6():
tab6 = html.Div([
html.H1(children='Labjack U3 Project',style={'textAlign':'center', 'padding':'10px'}),
html.P(children="""
Ater a long struggle with a big brand name DAC on Windows,
I decided to go with Linux and write my own code (as one does).""",
style={'textAlign':'left', 'marginLeft':'100px', 'marginRight': '100px'}),
html.P(children="""
I wrote this program for the LabJack U3, it controls the two analogue outputs and records 5 inputs.
The calibration tab allows you to name your project and calibrate each instrument separately.
The program is free for anyone to use, and I hope the many hours I spent coding will somehow contribute to your scientific research.
""",
style={'textAlign':'left', 'marginLeft':'100px', 'marginRight': '100px'}),
html.P(children="""
If you have any suggestions for improvements or any questions about the program, feel free to email me suggestions.
""",
style={'textAlign':'left', 'marginLeft':'100px', 'marginRight': '100px'}),
html.H2(children="Acknowledgements",
style={'textAlign':'center', 'marginLeft':'100px', 'marginRight': '100px'}),
html.P(children="""
A big thanks to LabJack for making a low cost high quality DAC and
thanks also to my two sons Erik and Tom for patiently coaching me with the Python code.
""",
style={'textAlign':'left', 'marginLeft':'100px', 'marginRight': '100px'}),
html.P(children="Steven Sesselmann",
style={'textAlign':'left', 'marginLeft':'100px', 'marginRight': '100px'}),
html.P(children="[email protected]",
style={'textAlign':'left', 'marginLeft':'100px', 'marginRight': '100px'}),
html.P(children="https://www.gammaspectacular.com",
style={'textAlign':'left', 'marginLeft':'100px', 'marginRight': '100px'}),
html.P(html.Img(src=app.get_asset_url('banner.jpg'),),
style={'textAlign':'center'})
]),
return tab6