logo
background
 Home and Links
 Your PC and Security
 Server NAS
 Wargames
 Astronomy
 PhotoStory
 DVD making
 Raspberry Pi
 PIC projects
 Other projects
 Next >>

Using the PIC for everything

Links to all my PIC tips, tricks and 'mini-project' notes

Whilst the mid-range PIC's can tackle many complex and otherwise almost impossible applications with ease, the challenge is to minimise cost by using the cheapest baseline PIC 'whenever possible'. Baseline PIC's can be had for less than 50p each = I purchased many 16F5x chips for between 40 and 50p each (mainly from CPC as 'remaindered' stock in their 'Bargain bin' section).

The even cheaper to use 12F675 (it has an internal OSC) can be found for as little as 20p (in Qty 10pcs, eBay), as can many other PIC's for less than £1 each. These PIC's are so cheap that you will soon start using them 'for everything' (especially as the PIC can often be used in place of a higher cost 'single function' digital chip - such as divider, ADC, PWM generator etc.) !

Buying the PIC in a 'TSOP' package is (sometimes) cheaper than the DIL/DIP package version = and whilst this costs you 10-20p extra for a mini-PCB TSOP-DIP 'converter', if you use a 'bigger' PCB than the PIC TSOP really needs you can mount other devices (resistors, caps, even osc. crystals) on the same board - and make use of the extra 'pin holes' to wire this up to the rest of your circuit

Below is a mix of programming tips and tricks, common circuit tricks and all the 'mini-projects' I've used the PIC for

I hope these details proves as useful to you as it does to me !

Below, click on the '+' to expand 'in place' (includes diagrams/images) or click the title URL (to view/download the text only version).

(+) 0004 Multi byte ADD - (24bit)

(+) 0005 new PIC 33 instruction set - (macros)

(+) 0006 Binary multiply methods

(+) 0007 8x8 - (multiply)

(+) 0008 8x16 - (multiply)

(+) 0011 Bi color LED driving

(+) 0012 One pin dual LED and button detect

(+) 0013 Input only multi button detect

(+) 001a One pin controls motor Fwd off Reverse



(-) 001c One pin controls 3 relays


Controlling 3 relays using a single pin

The 10F200-206 PIC's are cheap (I have paid less than 30p each for 10F208 in a SSOP package) but have only 4 user pins (3 i/o's and one input only). Of course the 3 i/o's could be used with a 'port expander', which would allow you to select one of 8 relays, however this is likely to cost (a lot) more than choosing a PIC with an extra 8 i/o pins in the first place ! Further, with only 4 pins in total, chances are you will need to use most of them as inputs anyway.

SO = how can we select (activate) one of 3 relay's using only a single i/o pin ?

1) We start by noting that a PIC pin has 3 'states' = 'off' (input mode), 'Hi' (4v3) and 'Lo' (0v7).

Assuming a 5v0 Vdd supply voltage, we add a pair of resistors to form a 'voltage divider' at the pin. So, when the pin is 'off' (set to 'input' mode), it will be 'pulled' to the 'mid point' voltage (2v5).

To avoid problems with the input 'sense' circuits oscillating, the mid-point voltage must avoid the 'input threshold'. This is typically 2v0. Choosing 2v5 thus ensures the input always "sees" a '1'

2) We now have 3 discrete voltages, so it is now possible to construct relay drive circuit that will 'activate' one of 3 relays.

However there is one restriction. At power on, the PIC sets all it's pins to input mode. So, by default, the 'mid point' relay will be 'activated'.

3) The relay control 'swtiches' now have to 'detect' the specific voltages.

It's worth noting that relays take time to 'switch'. So, if your application requires that no two relays ever be 'on' at the same time (an example would be a motor 'forward' and 'reverse' drive) you will have to modify the circuits below to ensure 'off' times are significantly faster than 'on' times  

Basic operation:-

The 'Hi relay' activates when 4v0 (or more) is seen
The 'Lo relay' activates when 1v0 (or less) is seen
The 'Mid relay' activates when a voltage between 2v0 and 3v0 is seen 

Simple P and N channel MOSFETS will get you the Hi and Lo circuit. The 'hard' one is the 'Mid' circuit.

MOSFET's - which are effectivly voltage controlled drvoces - are suggested to minimise current flows and thus minimise the eccect on the PIC pin when  the curcuit 'switches'. Even so, if is suggested that all curcuits are simulated using LTSPICE before being constructed




Photo: ../PIC_projects/photos/PIC-one-pin-dual-LED-and-button.gif
The 2 LEDs are driven 'as usual' (driving the PIC i/o pin Lo illuminates Red 20mA, driving Hi illuminates Green 10mA)

When no LED is lit (PIC i/o = input), the internal 'weak pull up' (or R3) of 22k will hold the pin Hi (there should be insufficient current to light G LED, but even is so, Green LED Vf will hold the pin to 3v min (and a '1' will be seen so long as the pin is 2v or above)

When the user presses the button, this will pull the PIC pin to 0v6 max. and a '0' will be seen. It will also pass approx 10mA through the Red LED (so approx 50% lit)

The danger is that the user may press the LED when the PIC is driving Hi (Green LED lit) - if this happens, the i/o pin will have to source 20mA via R4 + 10mA via G LED & R2 = 30mA total which is outside the PIC spec. (25mA) and risks burning the pin. So, to 'protect' against this, the PIC s/w code has to check for the button (switch the i/o pin between Green Hi drive and input sense) at regular intervals = the human eye won't spot anything over 30Hz.

Note, if 'feedback' is required (so the user knows their button press has been 'seen'), the PIC should respond by pulling the i/o pin Lo (so Red LED now 100%) and not Hi (Green) (unless 'strobing' is used to stay within the 25mA current limit)

This note last modified: 29th May 2018 14:37.

[top]

(+) 0020 I2C bit banging

(+) 0021 I2C code

(+) 0021 Serial link - (9600 baud)

(+) 0028 RS422 RS485 drive with one PIC pin

(+) 0030 D to A conversion - (R2R DAC)

(+) 0031 Ternary DAC - (R3R)

(+) 0032 Hybrid ternary bit conversion - (code)

(+) 0035 Pulse Width Modulation - (PWM)

(+) 0040 Gearing axis sensor

(+) 005a TYC50 AC motor details

(+) 0061 16F54 2char month map - (VTI)

(+) 0062 DDmmmYYYY character map - (VTI)

(+) 1000 PIC16F684 tips and tricks

(+) 2000 18Fx tips and tricks

(+) 6500 18Fxx data Table output - (max rate)

(+) 6501 18Fxx Return with value LUT - (max rate)

(+) 6502 18Fxx extended instruction data output - (max rate)

(+) 6530 simple data transmission

(+) 6540 Using RS485

Next subject :- index

[top]