Category Archives: Projects

RFM69 Breakout PCB

RFM69 Breakout PCB
Top View

For the past two years I worked on various projects that used the RFM69 module from Hope RF. This self-contained radio module allowed me to establish wireless links between various sensors and gateways for PIC, Arduino and ESP32 based projects.

One consistent problem that I experienced, was that trying to connect the RFM69 module to a prototype board was difficult. This was because the RFM69 module PAD footprints were not at 2.5mm pitch (which is a standard for most prototype boards). I purchased some PCB carriers from https://modtronicsaustralia.com in the past, which did make this task a little easier.

Slim RFM69 Breakout PCB

There were two models that I used, and while they worked well for me and many other people, I had a couple of small issues with them. The slim PCB version (seen above) did not have all the PIN’s from the RFM69 available to the user. I did like working with this model as it could plug into one side of the prototype boards or I could connect it via dupont terminals directly to an Arduino or an ESP32.

RFM69 Breakout PCB (wide footprint)

The full size breakout board that I also used did expose all the connections from the RFM69 module. Unfortunately it had one down side: it took up too much space on the prototype board. I looked elsewhere for various carriers or breakout boards for the RFM69 module, but could not find anything that met my requirements. So I decided it was time to tackle this problem myself and ‘scratch my own itch’, as they say in the industry.

My requirements for the breakout board:

  • Must connect into a prototype board on any side.
  • Have at least 2 I/O pins from RFM69 available.
  • Have the other I/O pins available on a separate header.
  • Be able to mount vertically to save space and horizontally to make prototyping easier.
  • Support a range of different antenna connections.

So after testing a couple of designs, I settled on the simple layout that met the requirements above. The board was designed in KiCad 5.0, and after a couple of minor tweaks with one of the design files, I was able to place the order for some of these to be manufactured by JCLPCB.

After a couple of weeks a box of boards arrived on my doorstep. A few days later I had several of these PCBs fitted with some RFM69 modules and operating in some of my current projects with no problems.

The board has been designed so that it can be mounted vertically as well as horizontally. It can also be connected to micro-controllers using flying leads and DuPont connectors. It accommodates a wide range of different antenna configurations.

The pin configuration has been set up to keep the important connections in one header, then to allow the connections to be split into two additional headers. This allows the user to decide if they want to use all of the connections or just the ones that are important to them.

I’ve made this PCB available to anyone who wants to purchase one for their projects. This should help other engineers and makers working with the RFM69 in their projects and prototypes. If you have any comments on the PCB or ideas that you would like to see incorporated into possible future revisions, please let me know.

In a future post, I will show you how I use the RFM69 modules with Arduino, ESP32 and PIC16 microcontrollers. I currently use the Platform IO plug-in for Visual Studio Code, and have been very successful in getting these modules operating, after several weeks of frustration with SPI settings, interruptions and a variety of other issues. All of which I will share in a future post.

Binary to 7 Dual segment Display

Following on from the previous project, I have been asked to look at updating this project to drive two 7 seven segment displays instead of one seven segment display. So, instead of taking av4 bit binary input (0000 to 1111) and driving a single 7 Segment LED display with values from 0 to 9 and A to F; the plan is now to read 8 bit of binary data (00000000 to 11111111) and output corresponding hex value (00 to FF).

This is now makes this project and ideal tool that can be used on the retro computer build. As one of these circuits could be used to read the data bus while two could be used to read the address bus.

It does mean that we need to change the way the existing project is wired. The PIC controller only has 16 inputs/output pins. If we are to read the 8 bit binary data this leaves only 8 pins for driving the output and reading the control lines. As the 7 segment LED displays need 7 lines (8 if we include the decimal point) we need to look at an alternative way to drive the LED displays.

If we use a serial to parallel shift register we could drive 8 lines from just a clock and data line, by using a third pin we can enable/disable the shift register. This will let us drive all seven segments plus the decimal point. This solves the first issue of driving more lines from less pins on the PIC micro controller.

The next issue, is how do we drive two 7 segment displays. This can be achieved by multiplexing the display. By this I mean we light up one display with the segments required, then we switch on the other display and light up the segments on that display. By switching on the segments on the two LED alternating, we can give the appearance that both displays are on at the same time.

In the above circuit we can see we added a busy line to the circuit to let external circuits know when the decoder is busy updating the display.

The external circuit only needs to place the 8 bit data on the data bus, bring the enable pin low and then bring the write line low. The resistors on port A provide pull up logic, to ensure the data lines are not floating and are in a known state. The PIC micro controller has internal weak pull up resistors, so the resistor network RN1 may not be required, we will only know when we start testing.

Lets look at how this is going to work…

As this circuit will be used to drive LED displays which tend to be consume power, we don’t need to worry too much about power consumption, but lets not just ignore it, we still want to be as efficient as possible. With this in mind, the PIC micro controller will be using its internal oscillator of 4MHz. We could use an external 20MHz crystal / resonator, to allow for faster speeds. As we want to keep the costs down, there is no need to add parts that are not required. As the LED displays are used to display the result to us humans, we don’t need a fast refresh rate for the HEX display. So if the refresh rate is set to 100Hz it should provide a good display results. When the display is not getting updated the PIC should power down into standby more.

First we need to read the input and the control lines, when both the WR (Write) and EN (Enable) go LOW, the micro controller will set the BUSY pin active (LOW) and then read the 8 bit input. When the controller had saved the value to displayed, it will then set the BUSY pin inactive (HIGH).

A timer interrupt will activate every 10ms, the BUSY pin will go active (LOW) to indicate to any external circuit that the controller is refreshing the displays. Once the controller has finished refreshing the display it will the BUSY pin as inactive (HIGH).

When the PIC has the 8 bit data word, it will be broken into two 4 bit nibbles. Each 4 bit nibble will then be converted to a hex value. As the conversion for each nibble is the same, we can simplify the process by converting the first 4 bits from the right to our HEX value, then we shift right the word by 4 bits and cover the first 4 bits from the right to our HEX value. This means we can keep the routine from the previous project for converting our input to HEX.

Once we have the HEX output we can send it one bit at a time into the serial to parallel shift register. The 74HC164 IC the devices that we are using in this circuit, as it is low cost and simple to use. The A & B inputs will be tied together to ensure that we are sending the same data to the into the shift register.

The active low clear pin will be used to reset the IC while the CLK pin will be used to clock data into the shift register. Once we have clocked the data in, we then switch on the relevant 7 Segment LED display, to show the result.

7 Segment Display Lookup Table with BCD Data

The above table shows what segments of the LED display should be switch on to display the various values from 0 to F.

Vacuum Tube Stash

Today I received a delivery of a box of vacuum tubes, all primarily TV valves from the 1960s & 1970s. Was hoping for some radio valves, but no joy. At least I have these for future projects or I will sell them on eBay over the coming months; or maybe I’ll use a few of these in a couple of experiments. What to you think, anyone got some ideas?

Mullard

  • EF9 – RF Pentode
  • EL36 – Pentode Power Output
  • UCH21 x 2 – Triode Heptode
  • N308 – ??
  • PL500 – TV Pentode Line Output
  • PL36 – TV Output Pentode
  • EV87 – ??
  • ELB21 – ??

Radio Haltron

  • U25 – ??
  • X78 – ??

Mazda

  • U191 x 3 TV Efficiency Line Diode

Tungsram

  • 6SA7GT – Pentode Power Output

RCA

  • 35Z5GT – Half-Wave Rectifier

KT (Electron)

  • KY4 – ??

KR Tubes

  • ISSK7 – ??

I suppose the first step is to try to find out something about the ones indicated with “??”. Some of these are models that I haven’t heard of before, so there is a little bit of homework to do over the next week or so. 

Electronic Repair, we need to change.

When thinking about electronics, what do you think about? Is it your laptop, your mobile phone, your fitness tracker or a home appliance? What happens when it breaks, what do you do? Do you bring it to a shop that can repair it? Can you find a shop that is willing to repair your device, or do you get told, it’s not designed to be repaired?

Have you had any of these questions?What are your options? Well, there was a time when on almost every street, there were repair shops where you could bring your faulty item in for repair. While, yes it could be expensive to get the item repaired, it could be repaired. The same is true today, but as a society we have become lazy and impatient. We want our stuff fixed instantly and we want it cheap! Oh yes, we cannot be without our beloved gadgets or appliances; we feel broken or incomplete. When we look into this further we have to ask the question, why? Why have we become so dependent on these devices? What is the social reasoning behind this?

One reason behind this is a technical addiction; yes the gadget may get us online for our social fix or endorphin rush when looking at the latest YouTube video, but at what cost?

I’m not going to discuss the pros and cons of being online, that’s a topic for others far more smarter than me to discuss. If our lives are going to be so dependent on being online, what are we going to do to ensure we’re able to get our fix, or make one gadget talk to another gadget? More importantly what are we going to do when it breaks? How important is it to us, really? If it’s that important, have we considered a backup plan? What to do when our primary gadget is no longer working?

If it’s that important that we have a backup, who will repair our beloved gadget? Can it be repaired and at what costs?

Personally I believe all items can be repaired to some level. This depends on the manufacture of the product, some vendors make it easy, some not so easy. While others will deliberately go out of their way to ensure the item cannot be repaired.

If you look at your car or your washing machine, both of these can be considered as gadgets and both can be repaired. Why is this so? The vendors understand that these gadgets will need to be maintained to keep operating. They make parts available for services centers to repair these gadgets. They also provide training to humans with a specific skill set, so they can perform these repairs.

Back in the early days of radio and TV it was very common for a family to purchase a kit form of one of these appliances, take it home, assemble it and get hundreds or sometimes thousands of hours of use before it needed a small repair; after which it would keep going until the next service or repair. This was very common up until the age of consumerism, where we were told we needed the latest gadget and needed it now and our previous gadget was obsolete. Or was it?

Yes, technology does evolve and move on. We have seen the disappearance of analogue TV, and very few new radio stations start broadcasting anymore. We now see digital TV, digital Radio, Internet Streaming of these services. These devices although more complicated than their earlier brethren can be repaired.

While repairing a vintage radio circa 1960’s, I discovered that the vendor had provided all the repair information inside a door on the radio. Why did they do this? It was because they knew, try as they may, some part would eventually fail and they wanted to give the customer the choice to perform the repair themselves. Yes, we were given a choice, repair it or take it to a shop who would repair it for us. As consumers we understood the value of these repairs and we had an idea how long it should take.

What about computers, I hear you say? Well recently I repaired a vintage BBC B Micro circa 1980’s, and again the vendor was able to provide the repair manual to allow these repairs to take place. This was common for most computers made in the ‘80s and ‘90s. There are still some computers that are repaired today for specialized industries.

In the 1990s, with the advancement in computers, they became modular, so you could swap out faulty components for working ones. Your faulty components could be sold/donated to companies who would perform these repairs. If you look at the more modern video card of today, which can cost thousands of euro, these are considered repairable by some companies.

Nowadays when our mobile phone breaks, we are told that it is not repairable. If you take five minutes and search on YouTube, I’m sure you will find someone who has performed a repair for the same fault that you identified with your gadget. So what’s wrong here?

As a society we have lost the skills to repair what we own. Some of these skills make take time to develop, but the more you do it, the better you become.

All I can say is to start small and work upwards, don’t try to repair your sister’s iPhone as your first repair attempt, unless you feel comfortable.

Let’s get back to being able to perform some basic repairs, instead of throwing that laptop or mobile phone in the bin. There may be someone out there who is prepared to put their time into repaiting that gadget for a charity. If you don’t want it, do the right thing and find it a new home. Let’s also think about the environment, just because your laptop doesn’t play high definition movies, it might be just right for someone learning about computers, who isn’t interested in multi-media.

If you can keep the gadget in circulation its not going into landfill; I’ve seen many laptops being thrown out with their batteries, containing lead and lithium going into landfill. What happens after, is that semi-state authorities are spending tens of thousands trying to remove these harmful materials from the waste. Where are they getting the money from? Us, we are the ones paying for this through our taxes; but if we all take a little bit of responsibility and think about what we are disposing, separate the harmful from the safe materials and the recyclable from the non-recyclable materials, we will be doing our little bit to help ourselves, our children and the environment.

And what of time and money? Your time and your money…ask yourself, are you one who is willing to spend cash on letting someone else perform the repair, and if so, how much is their time worth to them; if they spend four hours repairing your device are you willing to cover that cost? Do you value the service that this person is doing, or do you just want it cheap and don’t care about the cost? Ask yourself the same question if the situation was reversed. How would you feel?

Being a person who performs select repairs, I am choosy with my clients, as I have been on the receiving side of customers who would not pay for repairs, although I had spent many hours and purchased parts for their repair. It’s very disheartening as a technician, who takes pride in their work, not to be respected. It’s one reason why so many repair shops just close up and move on to other type of work. Yes, I do accept there are some cowboys out there, but in my experience they are only in the low percentages. It’s the consumers who have to step up and take responsibility for their actions, and value the work.

One way that consumers can take responsibility is to perform some basic repairs themselves. This, I have found, gives them a better understanding of what can go wrong with their gadget. This helps in two ways: firstly, when they take it to the shop, they will quickly identify the bullshit or when they are told mistruths about the repair; secondly, they will gain Insight into the effort required to repair their gadget.

One piece of advice I can give consumers when handing in their gadget for repair, is to be truthful with the technician. Tell them everything that happened, no matter how small, as the smallest piece of information may be all that is needed to change the repair time from six hours to one hour.

Rant over, hopefully this has given you some food for thought. It’s not everyone who wants to repair, but at least try to replace a plug on the next gadget you buy. Take the old plug off and keep it for next one (if not molded).