This is an old revision of the document!
Table of Contents
Tracker $$ProM
This is a document describing my second Near Space Balloon Tracker, now known as “ProMini”.
Any questions you can get in touch with me at kevin at unseen dot org.
Hardware
Tracker Hardware:
Arduino Pro Mini
The module I purchased is a clone of the original Arduino Pro Mini and has a few slight changes. It is closest to this Sparkfun product, with a voltage regulator settable to 3.3v or 5v.
SparkFun LiPower Boost Converter
The SparkFun LiPower Boost Converter allows me to use batteries producing less than 3.3v and boost the voltage to the required level.
As supplied the device has a low voltage cut out configured of 2.6v, designed for LiPoly cells. For primary cells we need to remove this by shorting R3 as described here.
The device is also supplied configured for 5v, we need 3.3v, so need to modify the solder jumper.
The data sheet for the IC is here. This shows the IC producing a maximum of 200ma (more than enough for us) at around 0.8v (about the minimum voltage from a single AAA cell before it is totally exhausted).
RFM22B Radio Module
The UKHAS Guide to the RFM22b is here
The Hope FM Mfg product page, with links to application notes is: here Pinout Diagrams are on page 61.
Note Frequency range legally available is 434.04MHz - 434.79MHz according to IR2030.
Assembled uBLOX MAX-6 Pico Breakout with Chip Scale Antenna
This is a pre-assembled pcb including the Max-6 GPS & Chip antenna. Just 4 connects are available - VCC, GND and RX & TX.
Connections
- SparkFun LiPower Boost Converter, GND → Arduino Pro Mini, GND
- SparkFun LiPower Boost Converter, VCC → Arduino Pro Mini, VCC
- SparkFun LiPower Boost Converter, VBatt → Arduino Pro Mini, A0 (to measure true battery voltage)
- Arduino Pro Mini, GND → RFM22B, GND (ground in)
- Arduino Pro Mini, Pin D3 → RFM22B, SDN (shutdown in)
- Arduino Pro Mini, pin 7 → RFM22B, VCC (3.3V in)
- Arduino Pro Mini, Int 0 pin D2 → RFM22B, NIRQ (interrupt request out)
- Arduino Pro Mini, SS pin D10 → RFM22B, NSEL (chip select in)
- Arduino Pro Mini, SCK pin D13 → RFM22B, SCK (SPI clock in)
- Arduino Pro Mini, MOSI pin D11 → RFM22B, SDI (SPI Data in)
- Arduino Pro Mini, MISO pin D12 → RFM22B, SDO (SPI data out)
- RFM22B, TX_ANT (TX antenna control in) → RFM22B, GPIO0 (GPIO0 out to control transmitter antenna TX_ANT)
- RFM22B, RX_ANT (RX antenna control in) → RFM22B, GPIO1 (GPIO1 out to control receiver antenna RX_ANT)
- Arduino Pro Mini, Pin 2 → Max-6, VCC
- Arduino Pro Mini, GND → Max-6, GND
- Arduino Pro Mini, pin 1 TX → Max-6, RX
- Arduino Pro Mini, pin 0 RX → Max-6, TX
Further Reading
Insspired buy: http://www.daveakerman.com/?p=310
https://github.com/jamescoxon/PicoAtlas
todo:
Use Frequency shift register: http://ava.upuaut.net/?p=408
[code]void rtty_txbit (int bit) {
if (bit) { radio1.write(0x73,0x03); // High } else { radio1.write(0x73,0x00); // Low }
}[/code]
More RFM22b code to look at: https://github.com/jamescoxon/Eurus/blob/master/70cmTracker/MainCode/MainCode.ino