<?php

//Outputs angle data into a string for the lcd arduino to read
$fileName  = fopen("angles.csv", "r");
	$myData = fgetcsv($fileName);
	fclose($fileName);
	echo $myData[0] . ",";
	echo $myData[1] . ",";
	echo $myData[2]; 
	
	?>
