I just purchased a Fez Cerbuino Bee from Mouser and have sadly realized that it’s not really an active platform (apparently discontinued in favor of the FEZ Reaper).
Does anyone happen to know where I can download information about the Cerbuino bee board (schematics, getting started docs - does it come pre-flashed, if not where to find & how to flash latest firmware, what version of micro .net to use, etc, etc)…
I tried downloading GHI Electronics NETMF SDK 2015 R1.exe a few more times, but checksum/hash never verified.
So then I tried downloading it directly to a one drive account using ctrlq.org (similar to ballloon , UploadtoDropbox, URL Droplet, sidecloudload, Cloud Save, etc), and then downloaded it from onedrive to my pc locally, and it worked!
Now it’s time to learn how to use the board! Hopefully the ‘.NET Gadgeteer for Beginners’ document and the ‘Microsoft.SPOT.Hardware’ will be enough to learn how to use the Fez Cerbuino so that I can try interfacing with a CC3100 shield. If not, is there any recommended .net microframework / gadgeteer book? Prefarably targeted to the Fez Cerbuino?
@ RoSchmi - Thanks for the links, the CC3100 looks ideal.
Looking at the code, I can see it uses Socket 2,
(
using (var wifi = new WifiAdapter(“cc3100”, InterfaceProfile.CerbuinoBee_Socket2_CC3100)) )
InitAdapter(name, “COM2”, (Cpu.Pin)0x16, (Cpu.Pin)0x17, ExceptionOnStartFailure, log);
port = new SerialPort(comPort, 115200, Parity.None, 8, StopBits.One);
port.Handshake = Handshake.RequestToSend;
)
But where are the rest of the pins on the photo defined in the code (ex., the CC3100’s nHIB & Reset signals)? I can see on the photo the RX/TX swap and CTS/RTS swap, but don’t see where these and the other pins are defined in the code!