It's finally here! Way back at the beginning of the year Pimoroni announced a project on kickstarter to make it childproof to plug sensors into a Raspberry Pi. While we love Arduino, the Flotilla gave the chance to do similar kinds of physical computing with a much younger age group. While Sniff is possibly a bit advanced for the Flotilla's core audience, children grow up... and taking cool hardware that was bought for one age group and letting them reuse it with Sniff when they're a bit older not only makes the equipment costs more manageable, but also lets kids focus on what they're doing in software without getting scared of new hardware.
Plus they looked pretty cool, and the engineer behind them - Phil Howard promised they'd be good and hackable, so lets go...
Finally (a little late, but just in time for Christmas!) it arrived. Now the normal thing to do (and what I would normally do with new hardware) is follow the instructions to check its all working right, before pulling it apart to see how it works. However in this case I decided to jump right in, and see what makes it tick straight away. One of the reasons for that is that Flotilla is designed to work with Raspberry Pi. I understand Pimoroni's justification for that (marketing and support issues), but Flotilla is totally wasted on Pi. It's USB so plugs into a regular computer and works just fine, and the idea of having a simple USB breakout for hardware boards is that you don't need stuff like GPIO, so you're much better off sticking with your regular computer.
So I plugged it straight into my Mac to see what happens...
First thing is we get a serial port,so lets fire up a serial monitor and see what happens. You need to set your serial port to 9600baud, and send <CR> carriage returns - NOT LF/Linefeeds, or CR/LF. Then you're in business.
v<CR>
V for version. Typing this tells you all about your dock
# Flotilla ready to set sail..
# Version: 0.1
# Serial: 0c0008003458363737330f
# User: ian
# Dock: myDock
As you can see you can put your name in, and if you've got more than one dock you can give each one a different name. You can change these who the "name dock" and "name user" commands:
n u Ian
n d myFlotilla
Now for the fun bits! Plugging in a device to one of the eight ports, and the Dock sends you a message:
c 4/rainbow
c for connect, the port number, and then the name of the device connected. And when you disconnect it you get a disconnect message:
d 4/rainbow
If you don't fancy keeping track of all that, you can just type "e" to enumerate to get a list of all connected devices:
c 2/weather
c 4/rainbow
You can get this in a slightly more human friendly, but less computer friendly debug message by typic "d".
# Debug information:
# Resources:
# SRAM free: 1362 bytes
# Load:
# Main loop duration: 93ms (0us)
# Main loop cycles per second (fps): 10
# Channels:
# 0 - vacant
# 1 - vacant
# 2 - weather (0x77)
# 3 - vacant
# 4 - rainbow (0x54)
# 5 - vacant
# 6 - vacant
# 7 - vacant
One minor quirk is that the channel numbers are numbered 0-7 in the opposite direction to the numbers on the board which go from 1-8. That means that "weather" on channel 2, is actually plugged into the socket numbered 6 (8-2=6). Probably best handle that in the low level software somewhere.
Once a device is plugged in, then if its an input device like the weather it starts sending status updates:
Once a device is plugged in, then if its an input device like the weather it starts sending status updates:
u 2/weather 2182,101032
u 2/weather 2181,101032
u 2/weather 2182,101034
Here the temperature is 21.8 degrees and the air pressure is 1010.
Touch sends a message whenever one of the buttons changes state:
u 3/touch 0,0,0,0
u 3/touch 0,1,0,0
u 3/touch 0,0,0,0
Light sends three values, but looking at the Python code, the first value is the brightness.
Most of the input devices should be pretty obvious.
Rainbow is the only output device I have (I got the medium kit ), and they're a but more tricky.
The command to talk to a device is "s" so to turn on some of the LEDs we type:
s 4 0,0,255 , 255,0,0 , 0,255,0 , 0,255,0 , 255,255,255
The Rainbow is on channel/port 4, and we need to send it 5 rgb triples. 255 is full brightness. 0 is off.
Anyway - that's all the info I need to get this thing running in Sniff...
[Update:theres now a follow up to this post, which explains how to easily use Flotilla in Sniff along with a bunch of example projects]
[Update:theres now a follow up to this post, which explains how to easily use Flotilla in Sniff along with a bunch of example projects]
Hello,Here You Can Learn How To Throw Darts?.
ReplyDelete