如何添加密码激活每个按钮(PHP)。每个按钮都有不同的密码激活

时间:2016-07-23 16:07:41

标签: button passwords gpio

请帮我解决这个js代码。如何添加密码以激活每个按钮功能。 (其中,$ pic =按钮)。

示例:

将密码“1234”键入活动按钮1,

将密码“1235”键入活动按钮2,

将密码“1236”键入活动按钮3。

这是代码: -

if ( (is_numeric($pic)) && ($pic <= 7) && ($pic >= 0) ) {

		

		//set the gpio's mode to output		

		system("gpio mode ".$pic." out");



		//reading pin's status

		exec ("gpio read ".$pic, $status, $return );



		//set the gpio to high/low

		if ($status[0] == "0" ) { $status[0] = "1"; }

		else if ($status[0] == "1" ) { $status[0] = "0"; }

		system("gpio write ".$pic." ".$status[0] );

0 个答案:

没有答案