Just a few notes in my quest to build a bot. It's worth reading Calling all Makers: Meet TJBot! if you've not already met TJ Bot!
I currently have a 3D print of the robot thanks to a friendly master inventor with a new toy. It needs a brain though!
Parts from The Pi Hut (other stores are available!)
- Raspberry Pi 3 - Model B
- Adafruit NeoPixel Diffused 8mm Through-Hole LED - 5 Pack
- 9g micro servo (1.6kg)
I also ended up being lazy and getting some jumper wires via Amazon (I couldn't find a similar collection of M/M, M/F, and F/F varieties in one pack with the other parts, which was a shame)
I downloaded the January 2017 version of Raspbian Jessie Lite.
It's been a while since I've played with a Raspberry Pi so ssh not being enabled by default caught me out. Once that was working I could connect TJ Bot to a Mac's USB and ethernet (thunderbolt adapter) to start playing with ssh [email protected]
Note: After sharing the Mac's Internet connection arp -i bridge100 -a
should show all the devices connected to the Mac, which revealed my Pi's address was 192.168.2.3
.
So far I've had to install a few extra bits to get TJ Bot working. For example, pigpio wasn't already installed with Raspbian Jessie Lite so I installed it following these instructions from the pigpio node module.
I also needed to install the following...
sudo apt-get install libasound2-dev
Thanks @victordibia, I was following the instructable instructions so I must admit I missed the extra info on the sample code readmes. Definitely looks like there is some useful detail in there. (I've already bugged you with an issue about LED sizes which you fixed in a very timely manner!)
Really enjoying the TJ Bot projects so far. Thanks to everyone who put them together.