legobot
I decided to use three ToF sensors. Those sensors will be connected through i2c, so we need to enable i2c port.As always, please follow steps below. You need to execute raspi-config as below Go to #9 Go to A6 Choose YES Choose OK You're ready to use i2c devices.It would be better you need to install i2c-tools which can search i2c devices by the command "sudo i2cdetect -y 1" for the PI zero If an..
If you want to access files in the PI zero using Mac, the best way will be installing nettatalk. The command is "sudo apt-get install netatalk" If everything goes well, you can use your finder to access files inside the PI zero. You can access pi's home directory from the finder as below
Installing node.js to the PI Zero If you want to install node.js to the PI zero, you can follow the steps below.If there is error related to permission, you may use 'sudo' for every command it has permission error. $ wget https://nodejs.org/dist/v4.4.7/node-v4.4.7-linux-armv6l.tar.xz $ tar -xvf node-v4.4.7-linux-armv6l.tar.xz $ cd node-v4.4.7-linux-armv6l $ sudo cp -R * /usr/local/ If everything..