AS1130 Ongoing Discussion 132 Individually controllable, PWM LED driver

I'm no longer angry with you...I'm just astounded. XD

You may also want to put some 1nF decoupling capacitors across pins 1 and 3 for each AS1130 chip as close to the pins as possible, especially if you intend to run the I2C bus at 1MHz.

Personally I would also decouple the MAX4617 supply pins as well...

The 10uF caps only stabilise the power rails...the 1nF caps would stop any HF interferance caused by the switching in other circuits like the AS1130s and the SCL and SDA lines.

You might get away with it if you stay at low speeds on the I2C bus, but the AS1130s clock is 1MHz and if you want a decent refresh rate on your matrix then you need to leave it at 1MHz.

Sorry guys, my eagle file got corrupted so my circuit boards I received today are just a shell of what they should be.

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

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