I need help with i2c memory


Results 1 to 18 of 18

Threaded View

  1. #3
    Join Date
    Feb 2004
    Location
    Germany
    Posts
    762


    Did you find this post helpful? Yes | No

    Default

    Try this:
    Code:
    addr var word
    sda var PORTB.0
    scl var PORTB.1
    cont con %10100000
    x var byte 'test data'
    addr=%00000000
    x=3 'test data is the number 3'
    
    I2Cwrite sda,scl,cont,addr,[x] 'should write 3 to address 0, right?'
    pause 10
    I2Cread sda,scl,cont,addr,[x] 'should read the data'
    pause 10
    serout Portb.2,4,[DEC x] 'displays data on an LCD'
    
    
    end
    Last edited by NavMicroSystems; - 16th June 2005 at 01:03.
    regards

    Ralph

    _______________________________________________
    There are only 10 types of people:
    Those who understand binary, and those who don't ...
    _______________________________________________



Similar Threads

  1. I2C Master/Slave 16F88/16F767 working code
    By DanPBP in forum Code Examples
    Replies: 2
    Last Post: - 23rd October 2012, 22:31
  2. HARDWARE I2C SAMPLE CODE question
    By Michael Wakileh in forum Code Examples
    Replies: 2
    Last Post: - 16th June 2009, 21:07
  3. I2C Master Slave issues.
    By cpayne in forum mel PIC BASIC Pro
    Replies: 9
    Last Post: - 29th March 2008, 19:33
  4. A help with Write/Read a I2C memory
    By Eugeniu in forum mel PIC BASIC Pro
    Replies: 25
    Last Post: - 28th March 2008, 13:53
  5. Please help with i2cslave i2c slave
    By cycle_girl in forum mel PIC BASIC Pro
    Replies: 2
    Last Post: - 1st December 2005, 13:55

Members who have read this thread : 0

You do not have permission to view the list of names.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts