PIC12F675 display

For questions and comments on programming in general. And for any items that don't fit into the forums below.

Moderators: Benj, Mods

Post Reply
okeyzee
Posts: 12
Joined: Fri Oct 31, 2014 5:33 pm
Has thanked: 2 times
Contact:

PIC12F675 display

Post by okeyzee »

Hi,

Is there a way to interface any kind of I2C display with PIC12F675 ?
For example: LCD (16x2) or 0.96 inch Oled or any other type.
Looking forward for the guidance please.

Regards
Attachments
OLED.jpg
OLED.jpg (21.87 KiB) Viewed 8409 times
LCD..jpg
LCD..jpg (25.46 KiB) Viewed 8409 times

User avatar
Bachman
Posts: 116
Joined: Sun Sep 07, 2014 11:37 am
Location: Hungary
Has thanked: 9 times
Been thanked: 53 times
Contact:

Re: PIC12F675 display

Post by Bachman »

I think, you should choose other PIC. PIC12F675 don't have enough memory regions to handle I2C and displays. Check for PIC12F1840.

okeyzee
Posts: 12
Joined: Fri Oct 31, 2014 5:33 pm
Has thanked: 2 times
Contact:

Re: PIC12F675 display

Post by okeyzee »

Thanks for the response Sir

medelec35
Matrix Staff
Posts: 9520
Joined: Sat May 05, 2007 2:27 pm
Location: Northamptonshire, UK
Has thanked: 2585 times
Been thanked: 3815 times
Contact:

Re: PIC12F675 display

Post by medelec35 »

Hello.
Before purchasing a different microcontroller, you can work out the minimum RAM requirements of a display by multiplying the resolution and then diving by 8.
E.g if using 128 x 64, the minim RAM required is

Code: Select all

128 x 64 / 8 = 1024 bytes RAM
If it was me I would go with the microcontroller that is the next size up e.g 2048 bytes of RAM
Martin

okeyzee
Posts: 12
Joined: Fri Oct 31, 2014 5:33 pm
Has thanked: 2 times
Contact:

Re: PIC12F675 display

Post by okeyzee »

Thanks a lot for the information Sir, highly appreciated.

Post Reply