Мне нужно отправить данные из порта rs232 и отобразить их в виде графика, используйте java script https://canvasjs.com/html5-javascript-dynamic-chart/
Мне нужна помощь в импорте переменной views.py в мой html
views.py
import io
from django.http import HttpResponse
from django.shortcuts import render
from random import sample
def about(read):
import serial, time
arduino = serial.Serial('COM3', 115200)
time.sleep(2)
read = arduino.readline()
arduino.close()
read = int(read)
return HttpResponse(str(read), '')
Html
var updateChart = function (count) {
count = count || 1;
for (var j = 0; j < count; j++) {
<!-- this is where I try to read the variable -->
yVal = href="{% 'about' %}"
dps.push({
x: xVal,
y: yVal
});
xVal++;
}