Blame view

site/stop.php 1.12 KB
3722a6bb   grouille   MAJ
1
  <?php
13bd3d94   grouille   MAJ
2
  require_once("accesBase.php");
34837f0f   grouille   MAJ
3
  include("date.php");
13bd3d94   grouille   MAJ
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
  
  $arduino_simple = "[Arduino_stop]\r\n";
  $arduino_spi = "[Arduino_stop]\r\n";
  $nucleo = "[Nucleo_stop]\r\n";
  
  $version = getVersion($_POST['nom']);
  
  if($version == 0)
  {
  	$ini = $arduino_simple;
  }
  elseif($version == 1)
  {
  	$ini = $arduino_spi;
  }
  elseif($version == 2)
  {
  	$ini = $nucleo;
  }
  
  $numero = getNumero($_POST['nom']);
  $raspberry = getRaspberry($_POST['nom']);
  $ini = $ini.$raspberry." capteur=".$numero."-".$version." setup=0\n";
  file_put_contents('upload/inventaire.ini', $ini);
  
34837f0f   grouille   MAJ
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
  /*
  $retour = array();
  $statut;
  exec("super cmd.sh", $retour, $statut);
  
  if($statut == 0)
  {
  	$message = "Le capteur a bien été arrêté !";
  	$color = "alert-success";
  }
  else
  {
  	$ansible = "Code retour : ".$statut."<br/>";
  	$message = "Echec lors de l'arrêt !";
  	$color = "alert-danger";
  }
  
  $size = count($retour);
  for($i = 0; $i<$size; $i++)
  {
  	$ansible = $ansible.$retour[$i]."<br/>";
  }
  
  ?>
  <div class="alert <?php echo $color;?>" role="alert">
  	<?php echo $message;?>
  </div>
  <div class="alert alert-secondary" role="alert">
  	<?php echo $ansible;?>
  </div>
  
  <?php
  */
  //header("Location: data.php");
3722a6bb   grouille   MAJ
63
  ?>