Skip to main content

Arduinos embedded within Homebrew Test Equipment ~ N6QW

More uses for the Arduino -- Test Equipment

There is always something on the bench! While I await some critical antenna parts still to come and a few parts I need for the two SSB transceivers, I thought I would turn my attention back to some investigations with the Arduino Nano coupled with TFT Color Displays.
 
I am amazed at how many sophisticated homebrew measuring devices  (many fitting in Altoids tins) are showing up in YouTube videos and on websites. Among these are Scalar Network Analyzers, Digital SWR Bridges, Audio Test Equipment and on and on.
 
In some of my own efforts I figured out how to add a moving bar S Meter to the bottom of a color display so that up until S9 the bar was one color and beyond S9 another color. Thinking that was pretty cool my attention turned to how would you add real time plots to a color display such as you might have in checking out a homebrew crystal filter (I know this is what a SNA does). But I wanted to see what makes things tick.
 
So my first thought was how to display a Sine Wave. We have two variables X and Y, where we can represent that y = sin(x). Fortunately the Arduino has built in math functions and so it is a simple matter to set a range of values for X and then have the Arduino calculate the Y values. Along the way we can add some axis' (ordinate and abscissa) and plot centerline.
 
As usual I thought all you needed to do was to set up the Arduino for the color display and write a couple of math equations and you are there. WRONG!!!!!! It took me nearly two days to figure out how to display a simple sine wave. You can see that below.
 
The problems I ran into was that I specified 320 points (width of the display)  for x starting at point x =14 so that it would fit within the axis. Well that netted multiple traces. By trial and error I found that if you only used  "x" at every 5 points that you got the plot below. Anything more or less gave a screwed up plot --Inexplicable is a really good word. Since the top of the display is considered y = 0 you must offset every value by + 120 (1/2 of 240 which is the number of vertical blocks) to place the plot in the middle of the screen. So then I thought this plot consists of rectangle data points, what does it take to "connect the dots" with lines. That never did work BUT I was able to create a plot similar to what you might see in a "two tone audio test" which is shown in the second photo. Below that is the sketch wherein I used Arduino 1.0.5 -- I do have 1.6.3 on a different machine.
 
So email me any thoughts or suggestions. If you know what you are doing, it is probably a pretty simple thing to homebrew your own test equipment --unfortunately I don't know what I am doing!!!!
 
Pete N6QW
 
 
 
 
This is the code I am using (it is OK to laugh).
 
 
/* From N6QW using the 240 X 320 TFT Color display
This is to test displating graphical information such as you would have with test instruments
*/
#include <SPI.h>
#include <Adafruit_GFX.h>
#include <TFT_ILI9340.h>
#if defined(__SAM3X8E__)
#undef __FlashStringHelper::F(string_literal)
#define F(string_literal) string_literal
#endif
#define __CS 10
#define __DC 9
#define __RST 8
// Color definitions
#define BLACK   0x0000
#define BLUE    0x001F
#define RED     0xF800
#define GREEN   0x07E0
#define CYAN    0x07FF
#define MAGENTA 0xF81F
#define YELLOW  0xFFE0 
#define WHITE   0xFFFF
TFT_ILI9340 tft = TFT_ILI9340(__CS, __DC, __RST);
#include "Wire.h"
int val = 0;
int val1 = 0;
int x = 0;
int y = 0;
int old_val = 0;
int old_val1 = 0;
void setup() {
 
 
  tft.begin();
  #if defined(__MK20DX128__) || defined(__MK20DX256__)
  tft.setBitrate(24000000);
  #endif
        tft.fillScreen(0x07F0); // testing switching background colors
        tft.fillScreen(WHITE); // 0x07F0 = lt green, 0xF810 = rose, 0xF840 = rust, 0xF820 = orange
        tft.setRotation(1); // landsacape versus portrait
       
       
        tft.drawLine(14,0,14,230, BLACK); //X axiz
        tft.drawLine (14,230, 300, 230, BLACK); // Y axis
        tft.drawRect( 14, 118, 300, 2, GREEN); //centerline of plot & the 2 is the width of the rectangle --makes it look like a FAT line
   
 
}
void loop()
    
{   
 
 for(int x = 5; x <320; x++){ //sets the range of values to plot along the X axis
 
 
 double sine = sin(x);
   x = x + 5 ;
   y =50*sin(x);
   old_val = x ; // for connecting lines to the dots at this point doesn't work
   old_val1 = y  ; //for connecting lines to the dots at this point doesn't work
  
   //tft.drawRect(x,y +120,  5, 5, MAGENTA); // the y+120 puts the y values in the center of the screen null this out for two tone test pattern
 
   delay(10);
 tft.drawLine( x, y + 120,old_val , 120 -old_val1, BLACK); // two tone test null this out for sine wave
 
 
   }
  }
 
 


Popular posts from this blog

2019 ~ What is the simplest homebrew SSB Transceiver that can be built?

4/27/2019 The Future of our Hobby is Here! Forget those simple rigs with homebrew crystal filters, cranky IRF510's and the analog VFO's. SDR is the wave that is building strength just like a Tsunami. With the Soft Rock V6.3 SMD Version + RRPi2 With the Omnia SDR and RPi2 Pete N6QW How Simple & How Cheap can you  build a Homebrew SSB Transceiver? 4/26/2019 --- I just converted my websites from an obsolete Windows Based Server with GoDaddy to their cPanel (Linux). This was a cost issue as a one year renewal of the Windows Server would buy three years on the cPanel. GoDaddy is discouraging the use of what they call the Obsolete Windows System. So I had to migrate and reload the whole pastapete.com, jessystems.com and the n6qw.com sites to the Linux based servers. Some files and links got lost in the translation --so you might not be able to see everything! Essentially I have  to open every link to verify that it works --that may take some time

New Technology for 2020 ~ The Hermes Lite 2.0 SDR Transceiver

  The Hermes Lite 2.0 SDR Transceiver. November 7th, 2020 ~ It's Settled! It is done! The stain of the Trump era is soon to be removed! Thanks to all who voted. The Voice of the People has been heard.  Congratulations to President Elect Biden and Vice President Elect Harris. Pete N6QW November 3rd, 2020 -- IT WAS THE MOUSE   We all know this is Dump Trump  Day. Go out and vote! It was the mouse! Back in 1999 I stupidly was one of the very first to purchase a Ten Tec Pegasus. Never buy the first batch of a new model.  Touted as the world's first computer controlled radio , actually I think the Kachina 505 was really the first. But the Pegasus was fraught with problems including a trip back to the Smokey Mountains. I was using an older Windows 95 machine to control the Pegasus and that may be a co-conspirator. Well after many calls to TT -- finally someone who has some smarts told me: Fix your station ground, Make all leads short and Buy stock in a ferrite bead company. I did all

The Next Project Updated 10/10/2022! The rubber has hit the pavement!

The Next Project... A 2022 Transceiver. 10/10/2022 My Apologies. It is with regret that I will be terminating any further work on this project. My caregiver duties have over time become a greater time sink and it is almost impossible to build something working only 10-15 minutes at a time spread out over a day. I apologize for not getting it from design ideas to complete hardware. Most likely I have built the last transceiver I will ever build. Thanks for riding along. My website https://www.n6qw.com/  has the pdf of the postings and I will leave this blog page as is. 73's Pete N6QW 10/05/2022 Still Alive! Regrettably my caregiver duties have overtaken any free time so not much progress. But I am hopeful yet this week I will cut at least one board. A PSA from N6QW.  Think of it like Mary Jo has a "crink" in her back and unable to get in the backseat of the 57 VW Beetle. A bit of a setback but not forever.  Seems like the hired caregiver had a small emergency and not able