Advertisement
RenatoCode

IP-Adresse im Display anzeigen

Jul 17th, 2018
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1. while (exec('hostname -I') == '') {
  2.   $Zeile1 = "'LAN-Kabel fehlt?'";
  3.   $Zeile2 = "'Kein Netzwerk da'";
  4.   exec("sudo /home/pi/I2C-LCD/LCD_show.py $Zeile1 $Zeile2", $result);
  5.   sleep(2);
  6. }
  7. $Zeile1 = "'IP-Adresse:'";
  8. $Zeile2 = "'".exec('hostname -I')."'";
  9. exec("sudo /home/pi/I2C-LCD/LCD_show.py $Zeile1 $Zeile2", $result);
  10. sleep(3);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement