我正在使用Django web框架开发自己的WEB。 我试图仅使用Javascript打开Raspberry pi LED。
var gpio = require("pi-gpio");
gpio.open(16, "output", function(err){
gpio.write(16, 1, function(){
gpio.close(16);
});
});
<script src='../static/bundle.js'></script>
我下载了browserify以在我的浏览器中使用require模块 所以,我是通过键入&nbsp运行构建&#39;在终端。 但是,我收到了这个错误
Uncaught TypeError: fs.readFileSync is not a function
at Object.5.child_process(bundle.js:436)
at s (bundle.js:1)
at bundle.js:1
at Object.1.pi-gpio (bundle.js:2)
at s (bundle.js:1)
at e (bundle.js:1)
at bundle.js:1