Hey Guy's Im trying to get 2 different sets of Fire2012 Led animations on

Hey Guy’s

Im trying to get 2 different sets of Fire2012 Led animations on 1 arduino.
so ive got 1 data connector connected to output 5 and the other to output 6 of the arduino. ive tried coppying and pasting the code and adding some lines of setup and #definebut it gives me the same fire on both led strips, im shure ive just got something wrong, and i bet its realy easy to do, but im out of ideas for now.

already thanks for the help

give each lead a different name when defining it. then use the new name when sending data to it.

#include “FastLED.h”

#define NUM_LEDS_PER_STRIP 60

CRGB strip1[NUM_LEDS_PER_STRIP];
CRGB strip2[NUM_LEDS_PER_STRIP];

void setup() {
// tell FastLED there’s 60 NEOPIXEL leds on pin 5
FastLED.addLeds<NEOPIXEL, 5>(strip1, NUM_LEDS_PER_STRIP);

// tell FastLED there’s 60 NEOPIXEL leds on pin 6
FastLED.addLeds<NEOPIXEL, 6>(strip2, NUM_LEDS_PER_STRIP);
}

I have a modularized version of the fire 2012 code. You can instantiate it for as many strips as you like. Let me know if you want the code

Here is an example sketch with three flames of different sizes attached to different pins:

Thanks alot, i see now what i did wrong in my code