The personal website of Scott W Harden
July 26th, 2019

SMT QRSS Design

This page documents development of a voltage-controlled oscillator suitable for QRSS. Source code and PCB files are on https://github.com/swharden/QRSS-hardware

For QRSS it's convenient to have 2 frequency shift adjustments: a coarse one to set frequency (~200 Hz), and a fine one for FSK (5 Hz). I began with the design below allowing manual adjustment of coarse tuning, then an external input for fine tuning. Eventually I switched to a design where a single voltage controls tuning (coarse and fine). Many QRSS TX designs use a variable capacitor to set the coarse adjustment, but I don't like that design because it means you have to open your enclosure every time you want to shift frequency. If this is going to be ovenized, I'd love to close the box and do all the tuning electronically.

This design worked pretty well. Fixed capacitors (optionally populated) set the frequency so the crystal oscillates in the QRSS band. The coarse adjustment moves the signal around the QRSS band (100Hz). The fine adjustment is pulled high through a divider. Adjust R4 to control how wide the FSK can be.

Real varicap diodes definitely work better than reverse-biased LEDs. A reverse-biasd blue LED measured 60 Hz swing (with a lot of additional fixed capacitance in place to get near center frequency). Replacing this with a BB132 (I had to remove a 5pF cap to compensate) I got a swing of 159 Hz. That's more than double, and that's just one varicap. You can stack them in parallel. Real varicaps dont mind low voltage* I found out, so don't worry about avoiding that super low region like with the LED.

Eventually I stopped trying to separate fine and coarse frequency adjustments and just went with a single voltage for tuning. I can control voltage coarsely and finely using potentiometers, so I was happy to simplify the oscillator design by moving that complexity to the keyer/control system. This is the QRSS oscillator I came up with. It's just a Colpitts oscillator with an output buffer. Note that the buffer will self-oscillate if the oscillator stops, so on-off-keying should be achieved downstream of this circuit. These decisions are made with maximal frequency stability in mind.

I'm glad I used a SMA connector, but in hindsight I should have laid it out sideways because I couldn't close the lid.

Build Notes

  • I used BB132 for the varicap
  • I used 33P for C6
  • For C9 I used 33p (should be NP0)
  • For C11 I used 100p
  • For C10 and C12 I used NP0 120p caps

Ovenization

Ovenization is achieved using two power-resistors fixed to the metal enclosure. A thermistor fastened to the chassis provides temperature feedback. This chassis heater seems to be a winning design, as it is slow but stable. Having loose coupling between the PCB and the chassis is intentional. The whole thing is enclosed in a modestly insulative plastic enclosure. I'm very happy with this design!

Ovenization

QRSS Oscillators Need Ovens

My oscillator looks stable on time scales of minutes, but on time scales of hours it is obvious that it wobbles as my central air conditioning turns on and off. I could go nuts with Styrofoam, but a crystal oven (or chassis heater) is warranted.

Why I want a chassis heater (not a oven heater)

Some DIY QRSS ovens use resistors as the heater element and package the heater and temperature sensor against the crystal. While temperature stability of the crystal is good, I prefer to thermo-stabilize all frequency-determining components (capacitors and varactors) of the oscillator circuit. For this reason, I prefer a chassis heater.

Eventually I want a SMT PCB heater

When I get an oscillator I like using SMT parts, I'll try adding the temperature sensor and heater directly on the board. This is ideal for small PCBs. It would be cool if the board could thermo-regulate itself, then the oscillator would just need insulation, and the heater would require very low power.

Chassis Heater Design

This section documents my thoughts and experiments related to development of a chassis heater. Since I'll build the chassis heater inside an insulated container, I'll refer to it as a chassis oven.

Design

After running the numbers for a bunch of different power/resistor combinations, I decided to work with 50-Ohm power resistors. I'd love to have more 50-Ohm power resistors on hand to use for making dummy loads.

I settled on this part: 50 Ohm (+/- 1%) 12.5 watt resistor ($2.64)

Running 12V through a single resistor would burn 2.88W of power as heat. If we wanted more heat we could add additional resistors in parallel, but this should be okay.

Circuit

After the above considerations, this is what I came up with. I made it on a breadboard and it works well.

  • You can add multiple R4s in parallel for faster heating
  • I ended-up replacing the TIP122 (Darlington transistor) with an IRF510 (N-channel MOSEFET) for better linear operation (since the TIP122 has such high gain)
    • This works great and the IRF510 rests partially on once stabalized
    • The IRF510 gets hot! Maybe you can mount that to the chassis too?
  • You can supply it with dirty power and it doesn't seem to affect oscillator performance
  • I use a multi-turn potentiometer for RV1
  • R6 sets hysteresis
    • Large values promote squishy temperature control.
    • Small values will faster responses but may oscillate
    • Remove R6 for bang-bang operation
  • I suspect this design could be used as a crystal oven
    • Replace Q1 with a 2N2222
    • Replace R4 with a 680 Ohm 1/4-watt resistor (~17 mA, ~200 mW)

Photos

More Notes

I experimented more on 2019-08-31:

  • Switched to an LM335 (not a thermistor) super-glued to the chassis
  • I target 3.10 mV (310 Kelvin = 37C or 100F)
  • Can use LM7805 for op-amp and divider since we are using low voltages
  • A tip122 is cheaper than the IRF510 and works fine

Calculating power dissipation of a transistor heating a resistor

Consider a NPN with a collector tied to VCC (Vcc) and emitter dumping into a resistor (R) to ground. Let's say I'm driving a 50 Ohm resistor as a heater. How hot will the transistor get? Is my transistor beefy enough? To answer this I need to determine the peak power dissipation through a transistor into a resistive load.

We should assume the current flowing through the resistor (I) will be the same as the current flowing through the transistor.

// Ve is a function of R and I
Ve = R * I

// transistor voltage drop
Vce = Vcc - Ve

// power through the transistor
Pnpn = I * Vce

// substitute 
Pnpn = I * Vce
Pnpn = I * (Vcc - Ve)
Pnpn = I * (Vcc - (R * I))
Pnpn = (I * Vcc) - (I^2 * R)

// at peak power the first derivative of current is zero
Pnpn = (I * Vcc) - (I^2 * R)
d(Pnpn) = Vcc - (2 * I * R) = 0

// find the current through the resistor (= transistor) at peak power
Vcc - (2 * I * R) = 0
2 * I * R = VCC
Ipeak = VCC / (2 * R)

// substitute back into original equation
Pnpn = (Ipeak * Vcc) - (Ipeak^2 * R)
Pnpn = ((Vcc / (2 * R)) * Vcc) - ((Vcc / (2 * R))^2 * R)
Pnpn = (Vcc^2) / (2 * R) - (Vcc^2 * R) / (4 * R^2)
4 * R * Pnpn = 2 * Vcc^2 - Vcc^2
Pnpn = Vcc ^ 2 / (4 * R)
Pnpn = Vcc * Vcc / (4 * R)
Pnpn = Vcc * (I * R) / (4 * R)
Pnpn = Vcc * I / 4

// since the power through the resistor is
Pr = Vcc * I

// peak power through the NPN is 1/4 that through the resistor
Pnpn = Vcc * I / 4
  • If I drop 12V through a 330 Ohm resistor it passes 36.4 mA of current and dissipates 436.4 mW of power. This means the transistor will dissipate 109 mW of power at its max.
Markdown source code last modified on January 18th, 2021
---
title: SMT QRSS Design
date: 2019-07-26 21:00:00
tags: qrss, circuit
---

# SMT QRSS Design

This page documents development of a voltage-controlled oscillator suitable for QRSS. Source code and PCB files are on https://github.com/swharden/QRSS-hardware

**For QRSS it's convenient to have 2 frequency shift adjustments: a coarse one to set frequency (~200 Hz), and a fine one for FSK (5 Hz).** I began with the design below allowing manual adjustment of coarse tuning, then an external input for fine tuning. Eventually I switched to a design where a single voltage controls tuning (coarse and fine). Many QRSS TX designs use a variable capacitor to set the coarse adjustment, but I don't like that design because it means you have to open your enclosure every time you want to shift frequency. If this is going to be ovenized, I'd love to close the box and do all the tuning electronically.

<div class="text-center">

[![](varactor-tuning-aj4vd-v1_thumb.jpg)](varactor-tuning-aj4vd-v1.png)

</div>

**This design worked pretty well.** Fixed capacitors (optionally populated) set the frequency so the crystal oscillates in the QRSS band. The coarse adjustment moves the signal around the QRSS band (100Hz). The fine adjustment is pulled high through a divider. Adjust R4 to control how wide the FSK can be.

**Real varicap diodes definitely work better than reverse-biased LEDs.** A reverse-biasd blue LED measured 60 Hz swing (with a lot of additional fixed capacitance in place to get near center frequency). Replacing this with a BB132 (I had to remove a 5pF cap to compensate) I got a swing of 159 Hz. That's more than double, and that's just one varicap. You can stack them in parallel. Real varicaps dont mind low voltage* I found out, so don't worry about avoiding that super low region like with the LED.

**Eventually I stopped trying to separate fine and coarse frequency adjustments** and just went with a single voltage for tuning. I can control voltage coarsely and finely using potentiometers, so I was happy to simplify the oscillator design by moving that complexity to the keyer/control system. This is the QRSS oscillator I came up with. It's just a [Colpitts oscillator](https://en.wikipedia.org/wiki/Colpitts_oscillator) with an output buffer. Note that the buffer will self-oscillate if the oscillator stops, so on-off-keying should be achieved downstream of this circuit. These decisions are made with maximal frequency stability in mind.

<div class="text-center">

[![](qrss-oscillator_thumb.jpg)](qrss-oscillator.png)

</div>

<div class="text-center img-border">

[![](pcb-design_thumb.jpg)](pcb-design.png)

</div>

<div class="text-center">

[![](pcb-3d_thumb.jpg)](pcb-3d.png)

</div>

I'm glad I used a SMA connector, but in hindsight I should have laid it out sideways because I couldn't close the lid.

## Build Notes
* I used BB132 for the varicap
* I used 33P for C6
* For C9 I used 33p (should be NP0)
* For C11 I used 100p
* For C10 and C12 I used NP0 120p caps

<div class="text-center img-border">

[![](2019-07-26-a_thumb.jpg)](2019-07-26-a.jpg)
[![](2019-07-26-b_thumb.jpg)](2019-07-26-b.jpg)
[![](2019-07-26-c_thumb.jpg)](2019-07-26-c.jpg)

</div>

## Ovenization

**Ovenization is achieved using two power-resistors fixed to the metal enclosure.** A thermistor fastened to the chassis provides temperature feedback. This _chassis heater_ seems to be a winning design, as it is slow but stable. Having loose coupling between the PCB and the chassis is intentional. The whole thing is enclosed in a modestly insulative plastic enclosure. I'm very happy with this design!

## Ovenization

### QRSS Oscillators Need Ovens
My oscillator looks stable on time scales of minutes, but on time scales of hours it is obvious that it wobbles as my central air conditioning turns on and off. I could go nuts with Styrofoam, but a crystal oven (or chassis heater) is warranted.

### Why I want a chassis heater (not a oven heater)
Some DIY QRSS ovens use resistors as the heater element and package the heater and temperature sensor against the crystal. While temperature stability of the crystal is good, I prefer to thermo-stabilize all frequency-determining components (capacitors and varactors) of the oscillator circuit. For this reason, I prefer a chassis heater.

### Eventually I want a SMT PCB heater
When I get an oscillator I like using SMT parts, I'll try adding the temperature sensor and heater directly on the board. This is ideal for small PCBs. It would be cool if the board could thermo-regulate itself, then the oscillator would just need insulation, and the heater would require very low power.

### Chassis Heater Design

This section documents my thoughts and experiments related to development of a chassis heater. Since I'll build the chassis heater inside an insulated container, I'll refer to it as a chassis oven.

### Design

After running the numbers for a bunch of different power/resistor combinations, I decided to work with 50-Ohm power resistors. I'd love to have more 50-Ohm power resistors on hand to use for making dummy loads.

I settled on this part: [50 Ohm (+/- 1%) 12.5 watt resistor](https://www.mouser.com/ProductDetail/Vishay-Dale/RH01050R00FE02?qs=sGAEpiMZZMtbXrIkmrvidDNaDpN5VXc5nhpgDg1t8QQ%3D) ($2.64)

Running 12V through a single resistor would burn 2.88W of power as heat. If we wanted more heat we could add additional resistors in parallel, but this should be okay.

### Circuit
After the above considerations, this is what I came up with. I made it on a breadboard and it works well.

<div class="text-center">

[![](oven-aj4vd-resistor-heater_thumb.jpg)](oven-aj4vd-resistor-heater.png)

</div>

* You can add multiple R4s in parallel for faster heating
* I ended-up replacing the TIP122 (Darlington transistor) with an IRF510 (N-channel MOSEFET) for better linear operation (since the TIP122 has such high gain)
  * This works great and the IRF510 rests partially on once stabalized
  * The IRF510 gets hot! Maybe you can mount that to the chassis too?
* You can supply it with dirty power and it doesn't seem to affect oscillator performance
* I use a multi-turn potentiometer for RV1
* R6 sets hysteresis
  * Large values promote squishy temperature control. 
  * Small values will faster responses but may oscillate
  * Remove R6 for bang-bang operation
* I suspect this design could be used as a _crystal_ oven
  * Replace Q1 with a 2N2222
  * Replace R4 with a 680 Ohm 1/4-watt resistor (~17 mA, ~200 mW)
  
### Photos

<div class="text-center img-border">

[![](2019-07-26-d_thumb.jpg)](2019-07-26-d.jpg)
[![](2019-07-26-e_thumb.jpg)](2019-07-26-e.jpg)

</div>

### More Notes
I experimented more on 2019-08-31:

* Switched to an LM335 (not a thermistor) super-glued to the chassis
* I target 3.10 mV (310 Kelvin = 37C or 100F)
* Can use LM7805 for op-amp and divider since we are using low voltages
* A tip122 is cheaper than the IRF510 and works fine


### Calculating power dissipation of a transistor heating a resistor

Consider a NPN with a collector tied to VCC (`Vcc`) and emitter dumping into a resistor (`R`) to ground. Let's say I'm driving a 50 Ohm resistor as a heater. How hot will the transistor get? Is my transistor beefy enough? To answer this I need to ***determine the peak power dissipation through a transistor into a resistive load.***

We should assume the current flowing through the resistor (`I`) will be the same as the current flowing through the transistor.

```c
// Ve is a function of R and I
Ve = R * I

// transistor voltage drop
Vce = Vcc - Ve

// power through the transistor
Pnpn = I * Vce

// substitute 
Pnpn = I * Vce
Pnpn = I * (Vcc - Ve)
Pnpn = I * (Vcc - (R * I))
Pnpn = (I * Vcc) - (I^2 * R)

// at peak power the first derivative of current is zero
Pnpn = (I * Vcc) - (I^2 * R)
d(Pnpn) = Vcc - (2 * I * R) = 0

// find the current through the resistor (= transistor) at peak power
Vcc - (2 * I * R) = 0
2 * I * R = VCC
Ipeak = VCC / (2 * R)

// substitute back into original equation
Pnpn = (Ipeak * Vcc) - (Ipeak^2 * R)
Pnpn = ((Vcc / (2 * R)) * Vcc) - ((Vcc / (2 * R))^2 * R)
Pnpn = (Vcc^2) / (2 * R) - (Vcc^2 * R) / (4 * R^2)
4 * R * Pnpn = 2 * Vcc^2 - Vcc^2
Pnpn = Vcc ^ 2 / (4 * R)
Pnpn = Vcc * Vcc / (4 * R)
Pnpn = Vcc * (I * R) / (4 * R)
Pnpn = Vcc * I / 4

// since the power through the resistor is
Pr = Vcc * I

// peak power through the NPN is 1/4 that through the resistor
Pnpn = Vcc * I / 4
```

* If I drop 12V through a 330 Ohm resistor it passes 36.4 mA of current and dissipates 436.4 mW of power. This means the transistor will dissipate 109 mW of power at its max. 
  * A 2n7000 can handle this.
  * A [0.5W 0805 300 Ohm resistor](https://www.mouser.com/ProductDetail/Panasonic/ERJ-P06J331V?qs=sGAEpiMZZMu61qfTUdNhG4N%252BbAgO2H57MCL338q%2F2SU%3D) can handle this (Mouser # 667-ERJ-P06J331V)
July 21st, 2019

New QRSS Keyer

I'd like to use an interesting pattern that takes advantage of both FSK and OOK. I want it to be 5 Hz or less in bandwidth, and I want it to be unique and recognizable in cases where only a few seconds are spotted, but I don't want it to be so odd that it's annoying. I came up with something like:

Here's what it looks like on the air:

Microcontroller

ATTiny2313 programmed with C (source code)

GPS serial data parsing

To ensure the message transmits exactly at the 0:00 mark of every 10 minutes, the microcontroller is occasionally put into a "wait" mode where it continuously watches the GPS output (parsing the serial data that bursts out every second) and waits for the minutes digit to become zero before beginning a transmission.

Technical details: The output is 9600 baud serial data in NMEA format. A string buffer is filled as incoming characters are received. If the message starts with $GPRMC we know the 11th character is the ones digit of the minutes number in the time code. Waiting for the next ten minute rollover to occur is as easy as waiting until that character becomes zero.

$GPRMC,184130.00,...
^    ^     ^

The start of a time message looks like this. To identify $GPRMC we just need to match the $ and the C (indicated by the first two arrows above). We then know if we keep reading, we will arrive at the ones digit of the minutes number (the third arrow).

I have some notes on the Neo-6M here

FSK Circuit

I found this design very convenient. A potentiometer (RV1) sets center frequency to let me adjust where in the QRSS band I want to transmit.

The FSK input (which could be digital or analog) is 0-5V, expected to originate from a microcontroller pin. The keyer is programmed to transmits over the full 0-5V range.

The second potentiometer (RV2) sets the width of the FSK input. I adjust this to achieve a bandwidth of about 5 Hz.

The output is buffered, mixed, and sent to the oscillator module with coax.

Markdown source code last modified on January 18th, 2021
---
title: New QRSS Keyer
date: 2019-07-21 21:00:00
tags: qrss, circuit
---

# New QRSS Keyer

**I'd like to use an interesting pattern** that takes advantage of both FSK and OOK. I want it to be 5 Hz or less in bandwidth, and I want it to be unique and recognizable in cases where only a few seconds are spotted, but I don't want it to be so odd that it's annoying. I came up with something like:

<div class="text-center">

[![](pattern_thumb.jpg)](pattern.jpg)

</div>

Here's what it looks like on the air:

<div class="text-center img-border">

[![](WD4ELG-30.1907210830.d1c3ee1f06_thumb.jpg)](WD4ELG-30.1907210830.d1c3ee1f06.jpg)

</div>

### Microcontroller
ATTiny2313 programmed with C ([source code](https://github.com/swharden/QRSS-hardware/tree/master/builds/keyer/main.c))

### GPS serial data parsing
To ensure the message transmits exactly at the 0:00 mark of every 10 minutes, the microcontroller is occasionally put into a "wait" mode where it continuously watches the GPS output (parsing the serial data that bursts out every second) and waits for the minutes digit to become zero before beginning a transmission.

Technical details: The output is 9600 baud serial data in [NMEA format](https://www.gpsinformation.org/dale/nmea.htm). A string buffer is filled as incoming characters are received. If the message starts with `$GPRMC` we know the 11th character is the ones digit of the minutes number in the time code. Waiting for the next ten minute rollover to occur is as easy as waiting until that character becomes zero.

```
$GPRMC,184130.00,...
^    ^     ^
```

The start of a time message looks like this. To identify `$GPRMC` we just need to match the `$` and the `C` (indicated by the first two arrows above). We then know if we keep reading, we will arrive at the ones digit of the minutes number (the third arrow).

I have some notes on the [Neo-6M here](https://github.com/swharden/AVR-projects/tree/master/uBlox%20Neo-6M)

### FSK Circuit

I found this design very convenient. A potentiometer (RV1) sets center frequency to let me adjust where in the QRSS band I want to transmit. 

The FSK input (which could be digital or analog) is 0-5V, expected to originate from a microcontroller pin. The keyer is programmed to transmits over the full 0-5V range.

The second potentiometer (RV2) sets the width of the FSK input. I adjust this to achieve a bandwidth of about 5 Hz.

The output is buffered, mixed, and sent to the oscillator module with coax.

<div class="text-center">

[![](fsk-circuit_thumb.jpg)](fsk-circuit.jpg)

</div>

<div class="text-center img-border">

[![](2019-07-19-keyer_thumb.jpg)](2019-07-19-keyer.jpg)
[![](2019-07-19-modules_thumb.jpg)](2019-07-19-modules.jpg)
[![](2019-07-31_thumb.jpg)](2019-07-31.jpg)

</div>
July 20th, 2019

QRSS Stitch and Stack

If the transmitter frequency is stable, transmissions start every 10 minutes, and grabbers are time-aligned to be every 10 minutes, multiple grabs can be averaged together to enhance signal-to-noise ratio. This is called QRSS Image Stacking. To simplify the process of making these images I created a new tool for the job: QRSS Stitch and Stack.

Markdown source code last modified on January 18th, 2021
---
title: QRSS Stitch and Stack
date: 2019-07-20 21:00:00
tags: qrss
---

# QRSS Stitch and Stack

If the transmitter frequency is stable, transmissions start every 10 minutes, and grabbers are time-aligned to be every 10 minutes, multiple grabs can be averaged together to enhance signal-to-noise ratio. This is called QRSS Image Stacking. To simplify the process of making these images I created a new tool for the job: [QRSS Stitch and Stack](https://github.com/swharden/QRSS-Stich-and-Stack).

<div class="text-center">

[![](qrss-stitch-and-stack-screenshot_thumb.jpg)](qrss-stitch-and-stack-screenshot.jpg)

</div>
July 20th, 2019

Started Transmitting Letters

I finished writing the microcontroller code to read the GPS time and only start transmissions when the minutes value ends with a zero. The signal now stacks nicely in 10-minute grabs. Now that GPS and the oven is working well I've started sending my call sign (AJ4VD).

AJ4VD spotted in Pensacola, FL (W4HBK)

First spot occurred while I was actively adjusting the transmission length

AJ4VD spotted in Greensboro, NC (WD4ELG)

5x frame stack (mean frame) from the WD4ELG grabber reveals the AJ4VD signal much better, and confirms the GPS timer is working well.

Markdown source code last modified on January 18th, 2021
---
title: Started Transmitting Letters
date: 2019-07-20 21:00:00
tags: qrss
---

# Started Transmitting Letters

I finished writing the [microcontroller code to read the GPS time](https://github.com/swharden/QRSS-hardware/tree/master/builds/keyer) and only start transmissions when the minutes value ends with a zero. The signal now stacks nicely in 10-minute grabs. Now that GPS and the oven is working well I've started sending my call sign (AJ4VD).

### AJ4VD spotted in Pensacola, FL (W4HBK) 

First spot occurred while I was actively adjusting the transmission length

<div class="text-center img-border">

[![](W4HBK-first-callsign_thumb.jpg)](W4HBK-first-callsign.jpg)

</div>

### AJ4VD spotted in Greensboro, NC (WD4ELG)

<div class="text-center img-border">

[![](WD4ELG-first-callsign_thumb.jpg)](WD4ELG-first-callsign.jpg)

</div>

5x frame stack (mean frame) from the WD4ELG grabber reveals the AJ4VD signal much better, and confirms the GPS timer is working well.


<div class="text-center img-border">

[![](WD4ELG-5x-stack_thumb.jpg)](WD4ELG-5x-stack.jpg)

</div>
July 18th, 2019

OSK and FSK

I got OOK and FSK working together (the S shape in the middle). I'm also now using a crude oven, but am not sure yet how stable frequency is over long time spans.

AJ4VD spotted in Pensacola, FL (W4HBK)

AJ4VD spotted in Greensboro, NC (WD4ELG)

I kept thinking my oscillator was drifting frequency because the line wasn't straight. Turns out it was my curved monitors!

Markdown source code last modified on January 18th, 2021
---
title: OOK and FSK
date: 2019-07-18 21:00:00
tags: qrss
---

# OSK and FSK

I got OOK and FSK working together (the S shape in the middle). I'm also now using a crude oven, but am not sure yet how stable frequency is over long time spans.

### AJ4VD spotted in Pensacola, FL (W4HBK)

<div class="text-center img-border">

[![](W4HBK-OOK_thumb.jpg)](W4HBK-OOK.jpg)

</div>

### AJ4VD spotted in Greensboro, NC (WD4ELG)

<div class="text-center img-border">

[![](WD4ELG-Greensboro-NC-OOK_thumb.jpg)](WD4ELG-Greensboro-NC-OOK.jpg)

</div>

I kept thinking my oscillator was drifting frequency because the line wasn't straight. Turns out it was my curved monitors!

<div class="text-center img-border">

[![](2019-07-19-curved-monitors_thumb.jpg)](2019-07-19-curved-monitors.jpg)

</div>
Pages