Skip to content

Commit fee3ff1

Browse files
committed
Software licensing updates
1 parent 7e2d270 commit fee3ff1

File tree

315 files changed

+7550
-121
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

315 files changed

+7550
-121
lines changed

SevenInchEl14TS.css

+24
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
/*
2+
The Vent-display project is a ventilator display that consumes PIRDS data and
3+
performs most clinical respiration calculations. This is an important part of
4+
Public Invention's goal of creating an open-source ventilator ecosystem. This
5+
is a stand-alone .html file with about a thousand lines of JavaScript that
6+
implements a clinical display that doctors want to see of an operating
7+
ventilator. It includes live data trace plots of pressure and flow, as well as
8+
calculated values such as tidal volume.
9+
Copyright (C) 2021 Robert Read, Lauria Clarke, Ben Coombs, and Darío Hereñú.
10+
11+
This program is free software: you can redistribute it and/or modify
12+
it under the terms of the GNU Affero General Public License as
13+
published by the Free Software Foundation, either version 3 of the
14+
License, or (at your option) any later version.
15+
16+
This program is distributed in the hope that it will be useful,
17+
but WITHOUT ANY WARRANTY; without even the implied warranty of
18+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
19+
20+
See the GNU Affero General Public License for more details.
21+
You should have received a copy of the GNU Affero General Public License
22+
along with this program. If not, see <https://www.gnu.org/licenses/>.
23+
*/
24+
125
#preamble {
226
background: red;
327
display: none;

app.py

+23-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
#
2+
# The Vent-display project is a ventilator display that consumes PIRDS data and
3+
# performs most clinical respiration calculations. This is an important part of
4+
# Public Invention's goal of creating an open-source ventilator ecosystem. This
5+
# is a stand-alone .html file with about a thousand lines of JavaScript that
6+
# implements a clinical display that doctors want to see of an operating
7+
# ventilator. It includes live data trace plots of pressure and flow, as well as
8+
# calculated values such as tidal volume.
9+
# Copyright (C) 2021 Robert Read, Lauria Clarke, Ben Coombs, and Darío Hereñú.
10+
#
11+
# This program is free software: you can redistribute it and/or modify
12+
# it under the terms of the GNU Affero General Public License as
13+
# published by the Free Software Foundation, either version 3 of the
14+
# License, or (at your option) any later version.
15+
# This program is distributed in the hope that it will be useful,
16+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
17+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18+
# GNU Affero General Public License for more details.
19+
# You should have received a copy of the GNU Affero General Public License
20+
# along with this program. If not, see <https://www.gnu.org/licenses/>.
21+
#
22+
123
from flask import Flask, render_template, request, send_from_directory, jsonify
224
import serial;
325
import time;
@@ -17,7 +39,7 @@ def serial_conn():
1739
s = "".join(map(chr, ser_bytes))
1840
print(s)
1941
return s
20-
42+
2143

2244
@app.route('/')
2345
def render():
@@ -40,4 +62,3 @@ def add_header(response):
4062

4163
if __name__=='__main__':
4264
app.run(debug=True)
43-

css/bootstrap-grid.css

+23-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/bootstrap-grid.min.css

+22-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/bootstrap-grid.rtl.css

+23-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/bootstrap-grid.rtl.min.css

+22-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/bootstrap-reboot.css

+22-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/bootstrap-reboot.min.css

+22-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/bootstrap-reboot.rtl.css

+22-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)