diff --git a/Code-C/main b/Code-C/main index f483ae6..a9d4677 100755 Binary files a/Code-C/main and b/Code-C/main differ diff --git a/Py-Script/courbe.py b/Py-Script/courbe.py index bae809c..2b12937 100644 --- a/Py-Script/courbe.py +++ b/Py-Script/courbe.py @@ -9,14 +9,14 @@ import sys #! /usr/bin/env python3 # -*- coding: UTF-8 -*- -csv_reader = csv.reader(open('rawData.csv')) #Ouvre le fichier .csv +csv_reader1 = csv.reader(open('rawData.csv')) #Ouvre le fichier .csv bigx = float(-sys.maxsize-1) bigy = float(-sys.maxsize-1) smallx = float(sys.maxsize) smally = float(sys.maxsize) capteurs = [] -for ligne in csv_reader: +for ligne in csv_reader1: capteurs.append(ligne) if float(ligne[0]) > bigx: bigx = float(ligne[0])