What is the fastest way to copy data from an array of numbers into the IAVC?
Use the arrayPoke(address, array, offset length) method. Where: • address is the starting address in the IAVC where you want to store the numbers • array is the array that contains the numbers you want to copy • offset is the offset in your array of the first number you want to copy • length is how many numbers you want to copy For example by typing in the interactive command area: data = new array[1536]; for (var i = 0; i You will fill the IAVC screen RAM with zeroes (fill the image with hearts).