Browse Source

removed fft lib and other pieces of this lib; removed optical sensor page html

master
parent
commit
fbe6dd2e6a
  1. 73
      html/hbs.html
  2. BIN
      lib/FFT.zip
  3. 1
      src/Graph.cpp
  4. 1
      src/Graph.h
  5. 12
      src/html.h

73
html/hbs.html

@ -1,73 +0,0 @@
<!DOCTYPE html>
<html>
<style>
button {
width: 190px;
height: 40px;
}
#navs {
height: 40px;
width: 400px;
position: relative;
}
footer {
height: 5%;
text-align: center;
width: 100%;
margin-top: 100px;
}
.clear {
clear: left;
}
#hbs_text {
text-align: left;
width: 400px;
text-indent: 20px;
}
</style>
<body>
<div id="main_block" align="center">
<h2>Лабораторная работа *НАЗВАНИЕ*</h2>
<h3>Высокочувствительный оптодатчик ADPD2214</h3>
<p id="hbs_text">Применяется для измерения пульса, расчета фотоплетизмограммы. Низкое энергопотребление, а также управляемое выключение
этого электроприбора позволяет использовать его в портативных устройствах.
</p>
<p id="hbs_text">Также применяется в химическом анализе. Частота обновления графика - 1 раз в двадцать секунд. Данные с сенсора снимаются
с частотой в 20Hz. </p>
<canvas id="myCanvas" width="400" height="200" style="border:1px solid #3c70ff;">
Браузер устарел!
</canvas>
<script>
var c = document.getElementById("myCanvas");
var context = c.getContext("2d");
var randomNumbers, randNumsLength;
context.moveTo(0, 0);
for (i = 0; i != 400; i += 4) {
context.lineTo(i, Math.random() * 100 + 50);
}
context.stroke();
context.font = "50px Arial";
context.fillText("122",300,170);
</script>
<div id="navs">
<button onclick="window.location.href='/acc.html?f=0'" class="button">Акселерометр</button>
</div>
<div class="clear"></div>
</div>
<footer>
Тамбовский Государственный Технический Университет 2017 г.
</footer>
</body>
</html>

BIN
lib/FFT.zip

Binary file not shown.

1
src/Graph.cpp

@ -4,7 +4,6 @@ Graph::Graph (int graphSize, int graphUpdateRate) {
this->size = graphSize;
this->updateRate = graphUpdateRate; // Раз в секунду
array = new int[size];
fft = new int[size/2];
source = new int[size];
counter = 0;
}

1
src/Graph.h

@ -3,7 +3,6 @@ class Graph {
int size;
int updateRate;
int * array;
int * fft;
int * source;
int counter;

12
src/html.h

@ -133,17 +133,7 @@ static int getHtml(parts p, char &adr, uint16_t buf_size, uint16_t bias)
switch (p)
{
case HTML_BEGIN:
html_part = html_begin;
break;
// case HTML_END:
// html_part = html_end;
// break;
// case STYLE:
// html_part = style;
// break;
// case SCRIPT:
// html_part = script;
// break;
html_par
case ACC_CALIBRATE:
html_part = acc_calibrate;
break;

Loading…
Cancel
Save