Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • in reply to: Wifi with GameframeV1? #3565
    logod11
    Participant

    Hi Jeremy, just wondering if you were still planning on sharing the photon source code. I would be willing to pay similar to how we did the artwork.

    in reply to: Purchase Just the SD Card? #1675
    logod11
    Participant

    Thank you! I think this might work. Multiply and add the even rows and subtract the odd. I will try changing it to this when I get home tonight.

    byte getIndex(byte x, byte y)
    {
    byte index;
    if (y == 0)
    {
    index = x;
    }
    else if (y % 2 == 0)
    {
    index = y * 16 + x;
    }
    else
    {
    index = (y * 16 + 15) – x;
    }
    return index;
    }

    in reply to: Purchase Just the SD Card? #1671
    logod11
    Participant

    Hi Jeremy, I’ve started working on my version of your Gameframe. Thank you very much for releasing the digital download in the shop. No issues in purchasing. I’ve gotten to the point where I can display pictures for the SD card onto the LEDs and boy does that eBoy artwork look great.

    It turns out I’ve built my matrix opposite to the source code. Is there a way to flip everything horizontally easily? I’ve currently Wired left to right and it seams the code is right to left.

    I’d like to also share a couple of things for anyone building their own.
    The new version of the Arduino library SDFat (updated oct25) is no longer compatible with version 1.0.1. The game version of the code becomes too large to fit on the memory when using 1.0.5. I found an old version of the library to use while compiling with 1.0.1.
    At first I kept having SD card error despite everything working well with the example SD programs. It must be that I’m using a cheap SD card as after changing to half (SPI_HALF_SPEED) speed there are no longer read issues.
    Instead of getting a laser cut grid I tried simply printing the grid onto the vellum which worked reasonably well although there is a tiny bit of light bleeding through at full brightness. For internal grid I was stuck making one out of card stock. Doing this was tedious and produced a much floppier grid than I had hoped for (I should start looking for a friend with a laser cutter).

    Seeing my display light up has been very rewarding so far. When I get these last bugs sorted I will be proud to display it in my office. I cant thank you enough Jeremy for sharing your project, code and artwork with the world.

Viewing 3 posts - 1 through 3 (of 3 total)