AS1130 Ongoing Discussion 132 Individually controllable, PWM LED driver

macegr:
I can and will be as patient as Hexadec has been, but only when I'm getting paid for it.

Yeah... I was tempted to post my hourly rate for this sort of thing.... ]:smiley: ]:smiley: ]:smiley:

@binarygod

What makes no sense is you rewriting the I2C driver. You need to either redownload the original or be absolutely certain that every change you have made is back to it's original state.

Everything written in the datasheet is EXACTLY following the I2C protocol. Your driver DOES NOT need to be changed.

Until you rectify this then we can't continue.

To help later:
Rewrite this code to run on your compiler.

// This function writes the slave address to the i2c bus.
// If a slave chip is at that address, it should respond to
// this with an "ACK".   This function returns TRUE if an
// ACK was found.  Otherwise it returns FALSE.
int8 get_ack_status(int8 address)
{
int8 status;

i2c_start();
status = i2c_write(address);  // Status = 0 if got an ACK
i2c_stop();

if(status == 0)
   return(TRUE);
else
   return(FALSE);
}


//=================================
void main()
{
int8 i;
int8 status;
int8 count = 0;

printf("\n\rStart:\n\r");

delay_ms(1000);

// Try all slave addresses from 0x10 to 0xEF.
// See if we get a response from any slaves
// that may be on the i2c bus.
for(i=0x10; i < 0xF0; i+=2)
   {
    status = get_ack_status(i);
    if(status == TRUE)
      { 
       printf("ACK addr: %X\n\r", i);
       count++;
       delay_ms(2000);
      }
   }

if(count == 0)
   printf("\n\rNothing Found");
else
   printf("\n\rNumber of i2c chips found: %u", count);

while(1);
}

HURRAYYYYYYYYYY!

Well done mate. :wink:

Go on...tell me what the problem was...(I already think you're an idiot) :grin: :grin: :grin:

The trouble is...I tend to have a logical approach to fault finding...you just seem to keep changing things until something happens.... :grin:...so no I haven't had that problem.

Before changing anything I think about what I expect to happen and what effect the change will have on the rest of the system.

I would get one matrix under your control (say the chip at 0x60) and then move on to the next.

One thing that occurred to me is....(listen carefully) you DO realise what the addresses of the next two chips will be?

I was going to tell you but I thought I'd let you work it out and tell me what your answer is... :grin:

Another point.

If I remember rightly, when you reset the AS1130s the EEPROM data is not cleared so if the chip starts up it will light up the LEDs with the data it already has in it's memory.

Also:

While you have access to the 'scope...take some screenshots of the I2C working properly so that you can see where the ack fires and what the known data looks like.

I don't really understand what you mean...

OK

You have 3 AS1130s. The address of the first one is 0x60.

What are the addresses of the second and third?

You can choose them with the multiplexers...yes...but what addresses will you use for the I2C writes?

No problem...I just want to see if you know what the addresses will be when you set your jumpers. :wink:

Incrementing the addresses won't work.... :smiley:

there are only three lines I don't understand...can I ask that question...?

:grin:
ask away...

why not? you did that in your code you sent me and why that doesn't work?!

You called yourself binarygod....you tell me why it won't work. :wink:

in the function 'load_data' you wrote these three lines:

IC_SEND(i);
IC_SEND(0);
IC_SEND(0);

That doesn't look like any code I have ever written...neither for the Arduino nor the PIC.

WTF :fearful:

Where's he gone??

lol, I have no idea. maybe transistorgod got him.

funkyguy4000:
lol, I have no idea. maybe transistorgod got him.

:grin: :grin: :grin:

...or...hexagod.... ]:smiley:

Probably accidentally got it working right, and dropped this thread like a hot potato.

dropped it like its hot, dropped it like its hot.
On a better note, I am feverishly working on getting one mounted.
I've never done such a tight pitch IC, last time one of the legs bent while soldering and I was so pissed.

HEYOOHHHHH figured it out! I have a mounted as1130.
Now its time to find time to test it out

macegr:
Probably accidentally got it working right, and dropped this thread like a hot potato.

Guess so...the last thing he posted was that it was working how he wanted it using my code! then he disappeared.

No thank-you, kiss my arse or anything.... :roll_eyes:

Makes you really want to help people doesn't it? :grin:

Come on Funky man...let's see some action on your project. :grin:

You'll see some soon! I have a very pressing project that is due in exactly........................68 days! An entire website! So I just literally stayed up all night, in fact I think I see a little sunlight brightening up the night sky out there.

Students never change...party 'til the last minute...then PANIC! :grin: :grin:

Yea, last party was new years! That was a crazy night.
Its for a worldwide competition.
I can probably find some time tomorrow after a speech. I need to construct the circuit yet, I just have the AS1130 mounted.