
This is a PIC32 BASIC Microcontroller kit set consisting of the BCore100 Microcontroller Board and a c3038 CMOS Camera Module(OV6630), along with all the other accessories you'll need to start using right out of the box.

What's in the package:
- 1x BCore100 Microcontroller
- 1x c3038 CMOS Camera Module
- 1x USB to Serial Download Cable Set
- FTDI USB to UART Convertor
- USB 2.0 to Mini B Cable
- JST ZH Crossed Serial Cable
- 1x Power Adaptor
- Input: AC 100 ~ 240V, 50/60Hz;
- Output: 6V/1A
- 1x Power Cable
- 1x 40 pin 0.1" (2.54mm) Standard Pin Header
- 4x Nickel Plated Stands & Nuts
- 20x Single Pin Jumper Wire F/F 20cm
- (For connecting the CMOS camera to the BCore100 Board)
- Colours will be according to the C3038 Camera Tutorial.
- 2x Black, 2x Red, 5x Green, 5x Blue, 1x Purple, 1x Orange, 1x Yellow, 3x Grey
- (Leave a comment in the cart if you'd like your own choice of colours instead!)
*Please refer to the individual product links for a more detailed description of each product.
Note: Consumers who buy this package will get a BCore100 Microcontroller board with the Camera Bus line Pins pre-soldered so that you can plug-and-play right out of the box.
The BCore100 has native libraries within the chip memory for the C3038 OV6630 Camera.
Frame-grabbing from the camera to memory for data manipulation, is as easy as the following code.
|
Example 1 – MONO (Black & White ) mode
Dim Image(19199) As Byte
Public Sub Main() CAM.Init() CAM.Mode(Const.CAM.Mode.Frame160x120) CAM.Speed(2) Do CAM.MONO.GrabFrame2Mem(Image) Loop End Sub
Example 2 – RGB (Colour) mode
Dim Image(57599) As Byte
Public Sub Main() CAM.Init() CAM.Mode(Const.CAM.Mode.Frame160x120) CAM.Speed(2) Do CAM.RGB.GrabFrame2Mem(Image) Loop End Sub
|
Detailed Information:
Resources / Tutorials:
Follow @AIS_Cube