5 lines
151 B
PHP
5 lines
151 B
PHP
|
<?php
|
||
|
$json_string = file_get_contents('/link/config/hardware.json');
|
||
|
$hardware = json_decode($json_string, true);
|
||
|
$chip = $hardware["chip"];
|
||
|
?>
|