SuMo_D

Forum Replies Created

Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • in reply to: PeggyDraw 2 Error #21400
    SuMo_D
    Participant

    No worries man! Thanks for all your help! 

    One more question, I’d really love to do more with programming in variable shades, I know you briefly touched on that in the other thread you split my questions into, do you have any suggestions for places/resources to study up on doing that?

    This will def get me through the event this weekend but we’re going to be using this in our kids programming classes too I think and want to try to get more versed in how the actual code works. We have one or two arduino masters at our maker space, but they’re not always around… 

    S

    in reply to: PeggyDraw 2 Error #21398
    SuMo_D
    Participant

    DUDE!!!!!!!!!!!!  Check this out!!! 

    :D 

    http://www.flickr.com/photos/90777409@N02/9303441909/

    its my 3 year stem cell transplantaversary as of 55 minutes ago… this is a tremendously awesome way to start it :D

    Thanks again Evil Genius you! Fresh v1.1 for fresh code! Word! 

    in reply to: PeggyDraw 2 Error #21396
    SuMo_D
    Participant
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    250,
    1104,
    1106,
    1106,
    1118,
    1490,
    82,
    1106,
    17618,
    16383,
    532992,
    0,
    64,
    0,
    4096,
    0,
    128
    0,
    0,
    1536,
    0,
    0,
    0,
    0,
    0,
    250,
    1104,
    1106,
    1106,
    1118,
    1490,
    82,
    1106,
    17618,
    16383,
    532992,
    0,
    64,
    0,
    4096,
    0,
    128
    0,
    0,
    1536,
    0,
    0,
    0,
    0,
    0,
    250,
    1104,
    1106,
    1106,
    1118,
    1490,
    82,
    1106,
    17618,
    16383,
    532992,
    0,
    64,
    0,
    4096,
    0,
    128
    };
     


    void setup()                    // run once, when the sketch starts
    {
      frame1.HardwareInit();   // Call this once to init the hardware. 
      // (Only needed once, even if you’ve got lots of frames.)

      unsigned short y = 0;     
      
      while (y < 25) {


        frame1.WriteRow( y, pgm_read_dword(&data1[y]));  

        y++;

      }




    }  // End void setup()  


    void loop()                     // run over and over again

      frame1.RefreshAll(10); //Draw frame buffer 10 times 

    }
    in reply to: PeggyDraw 2 Error #21395
    SuMo_D
    Participant

    Sorry… have to split the post it says its too long…. Pt 1:

    /* Simple example code for Peggy 2.0, using the Peggy2 library, version 0.2.
     
     Designed to be automatically generated!
     
     Copyright (c) 2008 Windell H Oskay.  All right reserved.
     
     This example is free software; you can redistribute it and/or
     modify it under the terms of the GNU Lesser General Public
     License as published by the Free Software Foundation; either
     version 2.1 of the License, or (at your option) any later version.
     
     This software is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     Lesser General Public License for more details.
     
     You should have received a copy of the GNU Lesser General Public
     License along with this software; if not, write to the Free Software
     Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
     */

    #include <Peggy2.h>
    #include <math.h>
    #include <stdlib.h> 
    #include <avr/pgmspace.h> 

    Peggy2 frame1;     // Make a frame buffer object, called frame1 
     


    const PROGMEM prog_uint32_t data1[]  = {
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    250,
    1104,
    1106,
    1106,
    1118,
    1490,
    82,
    1106,
    17618,
    16383,
    532992,
    0,
    64,
    0,
    4096,
    0,
    128
    in reply to: PeggyDraw 2 Error #21393
    SuMo_D
    Participant

    Ok…. Closer but still no… :/ now a whole different error… but it seems like its almost there…

    so it is setup lke… http://www.flickr.com/photos/90777409@N02/9302093837/

    I get it to run the program and save it, it looks like http://www.flickr.com/photos/90777409@N02/9304957540/
    Which seems a lot more like what it should be… and is awesome

    but when I open PeggyProgram.pde with arduino and try to run it I get

     – http://www.flickr.com/photos/90777409@N02/9302178233/in/photostream/

    in reply to: PeggyDraw 2 Error #21391
    SuMo_D
    Participant

    Yes, the Peggy2 File>Examples menu works fine and programs in (loads to the board) just fine. I spent some time this morning going through and loading all of them and doing simple mods to get a feel for the code and it uses. 

    The Peggydraw however and the Peggydraw_heartart both still are showing the same errors :( – I want to try to get my own content on here with it… which… will happen eventually!

    Also yeah, appreciate the compliment I used to teach graphics programs (Adobe Suite) at a major art school so tried to got my ninja screenshot skills down ;) – I had a bout with cancer and my head isn’t always all there but I’m going to start teaching again in the fall so glad its coming back :) 
    in reply to: PeggyDraw 2 Error #21389
    SuMo_D
    Participant

    Hhmmm… I thought I did that… you just download the Peggy2 folder and put it in the libraries subfolder of arudino correct? and yeah… the peggy hardware works fine… its a programming issue (I’m a lot better with tactile things, just learning to program recently) 

    Here’s a http://www.flickr.com/photos/90777409@N02/9304471116/

    Maybe I have the Peggydraw_heartart in a wrong relationship to it? – thanks for your help and your answer on the animation possibilities. 

    in reply to: PeggyDraw 2 Error #21387
    SuMo_D
    Participant

    Ok… I just tried to upload the sketch I made in Processing to the arduino to the board – 

    I have to note that we had to modify the board to use an UNO chip because the ATmega that came with it seemed to have gotten corrupted :/ – The Uno was programing the examples from the Peggy 2 library with no problem. 

    Here is what I get when I try to verfiy/upload the sketch I just finished in processing. Again any help would be awesome. Thanks!

    in reply to: Getting Started with PeggyDraw 2 #21385
    SuMo_D
    Participant

    Hiyo – I’m a noob too, but I got my Peggy Draw to work (woo hoo!) after having some connection and programming issues (Yea for maker spaces and community for figuring stuff out) – 

    I just had a question about the PeggyDraw2 program does it only allow full on and full off? I know the lights have 16 degrees of variable tone, is there a way that I can plot those in PeggyDraw2 or do I need to figure out how to adjust the code manually (like I said, I’m a noob… but I’m understanding it more and more and could maybe figure that out in some time) – 

    The Peggy planner is great, and helps me visualize what I want to do but I’m not sure what to do with the data dump and how that fits into everything (if I use that instead of Peggy draw to do what I’m trying to accomplish visually) 

    Any help would be much appreciated! Thanks for your awesome site and products – This board is going to make its debut at our Arts council gala this weekend and going to be reused in a lot of our upcoming kids classes :) 

    S

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