Zedomax DIY Hack - Let’s make a digital compass!
Digital Compass using Devantech CMPS03
Do u need a digital compass for your app?
Here we go, let’s put interface a digital compass w/ CUBLOC CB280.
|
Required Parts ; 1 CUBLOC CB280 (or some type of microcontroller) |
I was searching through google the other day, and I wanted to build a digital compass for my car.
So I figured I’d first start messing with it by using a CUBLOC Study Board
since it has a nice little breadboard for proto-typing.
Connections:
CMP03 Pin9 < --> GND CMP03 Pin1 < --> 5V
CMP03 Pin2 < --> P31 CMP03 Pin3 < --> P30
SGN SCL < --> P31 SGN SDA < --> P30
SGN GND < --> GND SGN 5V < --> 5V
Please make sure to connect Pull-Up resistors 4.7K to P31 and P30 as shown below:

Wait a Minute, MAX! What are the resistors for?
Ah, since we are using I2C protocol,
and I2C SCL and SDA pins need 4.7K Pull-up resistors in order for the protocol to work well.

(Close-up of connections on the study board to CMPS module)
I’ve hooked up a CGS-4S module with the CMPS module together.
That is the beauty of I2C, you can connect multiple devices in one bus.
The following is pin out for the CMPS03 compass module.
We have connected SDA and SCL to P30 and P31 of our CUBLOC CB280 module.


Above is the I2C chart for the CMPS03 module.
As you can see, the compass uses 0xC0 as its address.
We can first send 0xC0, then send the value of register,
followed by 0xC1 and then we can read one byte of data from the CMPS03.
Looks fairly simple right? Let’s look at more in detail what these registers do.

As you can see, register 1 will return a value between 0 to 255 for a full circle.
Register 2 and 3 will return between 0 and 3599 as a tenth of a degree.
Next, we will use CUBLOC BASIC to read both register 1, 2, and 3 to return
the current values of the digital compass.
|
Sub CompassSend() Set I2c 30,31 End Sub |
As you can see in the ComapassSend function,
we simply follow the I2C chart for the CMPS03 Compass module.
We will read register 1 and get a value between 0 and 255.
Next, we will read register 2 and 3, each high byte and low byte of a 16-bit integer, respectively.
This will return a value between 0 and 3599.
degree.byte1=I2cread(0) will store register 2 in the high byte of degree integer variable.
degree.lowbyte=I2cread(0) will store register 3 in the low byte of degree integer variable.
The rest I think you will understand very easily just by looking at it.
Here, we use If Then Debug “ERROR” to check for acknowledgement of the I2C device, CMPS03 module.
The csgdec function is simply a system function for outputting to the seven segment display.
Simply compile and download this program to your CB280 module now.
If you start rotating your study board,
you will see that the seven segment display will change values in degrees between 0 and 360.

(digital compass testing completed)
If you don’t have a CSG-4S module or cannot afford one,
you can use the debug screen to see the following:

The first value is in degrees between 0 and 360 and second value is
value between 0 and 255from register 1.
Now you have become a master of I2C protocol,
please go out there and put a compass on your app now.
Now all I have left to do is to convert 12V DC power of my car to 5V
so I can put my CB280 module and CMPS03 on the dashboard.
If you are having any trouble with above app, please e-mail max@zedomax.com
If you have any cool apps you’d like to share, please e-mail to max@zedomax.com
Downloads:





















September 29th, 2006 at 9:31 am
[...] Digital Compass using CMPS03 Posted in DoItYourself!, DIY Zedomax by max on the August 16th, 2006 Do u need a digital compass for your app? Here we go, let’s put interface a digital compass w/ CUBLOC CB280. We will use a CUBLOC CB280 module and CMPS03 Digital Compass module from Devantech to create a simple 0 to 360 degree compass. via Link via Link [html in English] cb220, cb280, CMPS03, cubloc, cutouch, devantech, digital compass, diy, DIY Zedomax, font face, Hack, make, Zedomax [...]
January 31st, 2007 at 9:45 pm
[...] watch I got for my birthday, it’s kinda cool. It has an embedded digital compass like our digital compass DIY except it’s much smaller and you don’t have to build it yourself. My girlfriend wanted [...]
May 7th, 2007 at 7:56 am
[...] Zedomax DIY Hack - Let’s make a digital compass! [...]