Jump to content

Thea Bug

Members
  • Posts

    6
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Thea Bug's Achievements

Young Blood

Young Blood (2/11)

  • One Year In
  • Reacting Well
  • First Post
  • Conversation Starter
  • One Month Later

Recent Badges

5

Reputation

  1. Did you make the barrel out of EVA or PVC?
  2. Sorry for second post I didn't want to include anything other than the code In the previous post for cut and paste purposes if they're new to it (like I was) it can be overwhelming if you have no former training or education in it. The 12 LED rings power up and off and I powered it by USB with a 18V milwaukee tool battery with an adapter
  3. #include <Adafruit_NeoPixel.h> #ifdef __AVR__ #include <avr/power.h> #endif Adafruit_NeoPixel strip(12, 6, NEO_GRB + NEO_KHZ800); Adafruit_NeoPixel strip1(12, 5, NEO_GRB + NEO_KHZ800); Adafruit_NeoPixel strip2(8, 7, NEO_GRB + NEO_KHZ800); void setup() { #if defined(__AVR_ATtiny85__) && (F_CPU == 16000000) clock_prescale_set(clock_div_1); #endif strip.begin(); strip.show(); strip1.begin(); strip1.show(); strip2.begin(); strip2.show(); strip.setBrightness(255); strip1.setBrightness(255); strip2.setBrightness(255); } void loop() { for(int i=0; i<=12; i++) { strip.setPixelColor(i, 0,0,255); strip1.setPixelColor(12-i, 0,0,255); strip.show(); strip1.show(); strip2.setPixelColor(i, 0,0,255); strip2.show(); delay(200); } for(int i=12; i>=0; i--) { strip.setPixelColor(i, 0,0,0); strip1.setPixelColor(12-i, 0,0,0); strip.show(); strip1.show(); strip2.setPixelColor(i, 0,0,0); strip2.show(); delay(200); } }
  4. My suit pics from Comic Con but it's still a work in progress
  5. I joined back in May with the goal of building my first pred. Almost everyday after work I slaved at it until Sept. for Comic Con here in Tucson, AZ. to have it ready. I finished runner up in the advanced group and look forward to attending other conventions around the country and meeting clans.
×
×
  • Create New...