From e679c15e566d397bf0df1aff90fc4dbd9d175911 Mon Sep 17 00:00:00 2001 From: Hendrik Langer Date: Thu, 6 Aug 2020 14:01:27 +0200 Subject: [PATCH] clear canvas --- raspberry/roberto/views/frontend/templates/index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/raspberry/roberto/views/frontend/templates/index.html b/raspberry/roberto/views/frontend/templates/index.html index 57560a6..831619c 100644 --- a/raspberry/roberto/views/frontend/templates/index.html +++ b/raspberry/roberto/views/frontend/templates/index.html @@ -174,6 +174,7 @@ socket.on('battery', (data) => { var ctx = canvas.getContext("2d"); ctx.font = "14px Arial"; ctx.fillStyle = "blue"; + ctx.clearRect(3*canvas.width/4, 30, canvas.width/4, 24); ctx.fillText(data, 3*canvas.width/4, 30); });