Category: Blog Posts

Graphic User Interface Part 1

In order to make our project useful, we need a user interface that is not tied to a terminal window. That is because we eventually want to place this unit on a flat surface, or hang on a wall, and interact with it as a complete unit. Therefore we...

Temperature Control Part 2 -PC Board

Today we will see the temperature controller circuit board. This board was designed with the idea that a human with a soldering iron would be working on it. Everything is solderable by hand, and the parts used are robust enough to survive some abuse. PSCarrier Schematic The schematic of...

Temperature Control Part 1

If you have been following since the beginning, you now have a breadboard with a CY8CKIT-059, a temperature sensor, and an IR Led driven by a Darlington Transistor or an FET. You also have a UART over the USB that can be connected to using TeraTerm or Putty under...

Infrared Sending Part 2

Parts In the previous post, I gave you the internals of the PSOC to create the IR transmitter. I experimented with several IR LED’s and eventually settled on some LED’s from Vishay. Their TSAL6xxx series is a good through hole part, available at Mouser. The external transistor can be...

Infrared Sending Part 1

Sending IR signals is difficult when using a device that is expected to be wall or shelf mounted. You have to create a strong enough signal for it to bounce around the room and be received by the target under less than ideal conditions. To accomplish this, you have...

Infrared Remote Recording Part 3

In the previous posts, we created an IR reader, then captured the data and stored it into memory. In this post, I will show you how to use an inexpensive logic analyzer to the Macintosh and look at the waveforms. Logic Analyzer LHT00SU1 I tend to use the LHT00SU1...

Infrared Remote Recording Part 2

The PSOC electronic design shown in the last post provides a mechanism for capture of the Infra-Red light (IR) broadcast by the remote. You will find on the internet that most IR remotes use Manchester Encoding. I found that for A/C units, that was not completely true, so I...

Infrared Remote Recording

Note: To re-create this project to this point, go back to the post PSoC USB UART: A Debugging Tool and work from there. If you are starting out with PSOC, go back to the post PSoC 101 and a PSOC Creator Trick In this post I will show the...

PSOC: Millisecond Timer The Easy Way

It is extremely easy to add a millisecond timer to your project. With a 24 MHz or 48 MHz ARM CPU processor speed, a timer only takes a few microseconds to execute. Let’s get started. Add Clock and ISR Go to the schematic sheet, right click on a bottom...

Floating Point Reading: Temperature Over USBUART

If you have been following the posts from the beginning, your application can print messages to the USB connected serial port, and get typed characters from the keyboard. See the previous post, PSoC USB UART: A Debugging Tool, here https://socmaker.com/?p=168. (Note I updated it as I found another issue.)...