- Видео 21
- Просмотров 64 675
kiwidave1
Добавлен 21 июн 2006
Видео
Stanford to Fremont in rush hour gsx-r1300r
Просмотров 133 года назад
just really parking this video here. want to keep it for the memories but dont want it taking up space on the harddrive cos its crap. hahaha
My winter/rain day next hobby
Просмотров 386 лет назад
Mix some funky stuff, an Arduino/lcd strip and Epoxy Resin. Time to learn something new :)
WS2812B Arduino double fire effect. Looks awesome
Просмотров 2,4 тыс.7 лет назад
Arduino Nano will 300 led WS2812B full string.
First Test WS2812B Arduino Nano 45amp Power Supply
Просмотров 1,7 тыс.7 лет назад
First run with Arduino Nano running 300 LED Strip on a 45amp Power supply. Going to start programming
Hayabusa commute Dumbarton to Willow Rd March 2014
Просмотров 50910 лет назад
My lane splitting commute on a Suzuki GSXR1300 Hayabusa. This is a typical daily commute in both directions. Fremont to Palo Alto.
Unification Rally, Sacramento January 11th, 2014
Просмотров 1,6 тыс.11 лет назад
Unified Motorcycle Rally on Scaramento California January 11th 2014.
SNS Focus XT Review
Просмотров 3,8 тыс.12 лет назад
Screw how it feels to chew gum. This is how it feels to drink Focus XT!
The New and Improved White Flood V2.0
Просмотров 1,8 тыс.13 лет назад
Log video for the new Controlled Labs Whiteflood
Parkzone F4U Corsair Crashes in the water
Просмотров 16 тыс.16 лет назад
Parkzone F4U Corsair Crashes in the water
Hot Start Heli Funfly, Aerial Video & Photos
Просмотров 48016 лет назад
Hot Start Heli Funfly, Aerial Video & Photos
Flying a trex 600 in Seattle, overcast, oh so gray. I
Просмотров 69516 лет назад
Flying a trex 600 in Seattle, overcast, oh so gray. I
hast du ein code ?
Neighbors would certainly call 911 😜😜
Code
V huse igqbinmoe
That was a long ride just to do a U turn
Mmwwaapp..mmwwaapp!.. surprised you didn't shake your head off from all the head turning lol. But nice run on your cam my bro..
cool light effect
this video is all over the freakn place
If you download the FastLED Library its one of the examples. DemoReel100. I just changed the pin to pin6, number of LEDs to 300 and LED_Type to WS2812BArduino 1.8.4>File>Examples>FastLED>DemoReel100Easy as.Cheers! but mine .....#include "FastLED.h"FASTLED_USING_NAMESPACE// FastLED "100-lines-of-code" demo reel, showing just a few // of the kinds of animation patterns you can quickly and easily // compose using FastLED. // // This example also shows one easy way to define multiple // animations patterns and have them automatically rotate. // // -Mark Kriegsman, December 2014#if defined(FASTLED_VERSION) && (FASTLED_VERSION < 3001000) #warning "Requires FastLED 3.1 or later; check github for latest code." #endif#define DATA_PIN 6 //#define CLK_PIN 4 #define LED_TYPE WS2812B #define COLOR_ORDER GRB #define NUM_LEDS 300 CRGB leds[NUM_LEDS];#define BRIGHTNESS 96 #define FRAMES_PER_SECOND 120void setup() { delay(3000); // 3 second delay for recovery // tell FastLED about the LED strip configuration FastLED.addLeds<LED_TYPE,DATA_PIN,COLOR_ORDER>(leds, NUM_LEDS).setCorrection(TypicalLEDStrip); //FastLED.addLeds<LED_TYPE,DATA_PIN,CLK_PIN,COLOR_ORDER>(leds, NUM_LEDS).setCorrection(TypicalLEDStrip); // set master brightness control FastLED.setBrightness(BRIGHTNESS); } // List of patterns to cycle through. Each is defined as a separate function below. typedef void (*SimplePatternList[])(); SimplePatternList gPatterns = { rainbow, rainbowWithGlitter, confetti, sinelon, juggle, bpm };uint8_t gCurrentPatternNumber = 0; // Index number of which pattern is current uint8_t gHue = 0; // rotating "base color" used by many of the patterns void loop() { // Call the current pattern function once, updating the 'leds' array gPatterns[gCurrentPatternNumber](); // send the 'leds' array out to the actual LED strip FastLED.show(); // insert a delay to keep the framerate modest FastLED.delay(1000/FRAMES_PER_SECOND); // do some periodic updates EVERY_N_MILLISECONDS( 20 ) { gHue++; } // slowly cycle the "base color" through the rainbow EVERY_N_SECONDS( 10 ) { nextPattern(); } // change patterns periodically }#define ARRAY_SIZE(A) (sizeof(A) / sizeof((A)[0]))void nextPattern() { // add one to the current pattern number, and wrap around at the end gCurrentPatternNumber = (gCurrentPatternNumber + 1) % ARRAY_SIZE( gPatterns); }void rainbow() { // FastLED's built-in rainbow generator fill_rainbow( leds, NUM_LEDS, gHue, 7); }void rainbowWithGlitter() { // built-in FastLED rainbow, plus some random sparkly glitter rainbow(); addGlitter(80); }void addGlitter( fract8 chanceOfGlitter) { if( random8() < chanceOfGlitter) { leds[ random16(NUM_LEDS) ] += CRGB::White; } }void confetti() { // random colored speckles that blink in and fade smoothly fadeToBlackBy( leds, NUM_LEDS, 10); int pos = random16(NUM_LEDS); leds[pos] += CHSV( gHue + random8(64), 200, 255); }void sinelon() { // a colored dot sweeping back and forth, with fading trails fadeToBlackBy( leds, NUM_LEDS, 20); int pos = beatsin16( 13, 0, NUM_LEDS-1 ); leds[pos] += CHSV( gHue, 255, 192); }void bpm() { // colored stripes pulsing at a defined Beats-Per-Minute (BPM) uint8_t BeatsPerMinute = 62; CRGBPalette16 palette = PartyColors_p; uint8_t beat = beatsin8( BeatsPerMinute, 64, 255); for( int i = 0; i < NUM_LEDS; i++) { //9948 leds[i] = ColorFromPalette(palette, gHue+(i*2), beat-gHue+(i*10)); } }void juggle() { // eight colored dots, weaving in and out of sync with each other fadeToBlackBy( leds, NUM_LEDS, 20); byte dothue = 0; for( int i = 0; i < 8; i++) { leds[beatsin16( i+7, 0, NUM_LEDS-1 )] |= CHSV(dothue, 200, 255); dothue += 32; } }
Can You give a code, please?!
It´s in the library. [FastLED example] DemoReel100
Nice video mate. Where'd everyone leave from at the start? Was that out around Kiapoi or somewhere?
GREAT VIDEO BRO, MEAN GO-PRO. I SAW MYSELF TO LOL, MEAN
Nice! MLH&R
ahaha, the most honest review there is ...
so he's actually alive, holy shit
You are crazy as hell amigo.
All those beautiful patches! I don't even ride, but I wish I had known about this event!
AWESOME VIDEO! THANX!
Excellent Video! NO ONE will destroy our culture1
How did you take that fist full of pills so easy?
lol wtf
I thought I was the only one who sucks the residual out of the cap first. haha I'm so relieved.
did you say that animal supplied these products to you? or did you buy them?
Any updates on this? Also Im a runner(endurance athlete) and how do you think it does for cardio guys???
jqcyclops Holland and Barrett iso energy I recommend it highly for running or cycling
LOL
do work!!!! I've never seen flying skills like that at any show @ EAA Oshkosh even. that helo move at the end was top notch
hell yeah brotha!
epic classic! fn spelling bee :D
Whatever I received today... Has a much smaller scoop... just took it.. about to head to the gym in a half hour.. we will see how it goes..
this powder reminds me of no-explode pre workout supp. I never did like the taste.
haha i like
Dave!!!!!!!
@MrJessej80 Thansk for your comment but yea, in fact it is version 2. I am currently doing a sponsored log on for Grape White Flood (WF v3) on BB.com. The V2 flavor left a lot to be desired but the version 3 is really really good. Thanks for watching!
Thats actually version 3. Controlled Labs made 3 versions of this product.
cool stuff man
Hi What is that green drink your drinking? thanks
great review man !
wistling death F4U corsair
nicely done mate. good flying ang good nerves.
NOOOOO! Get the Supercub first, and then use a simulator!
Yea i bought a different Parkzone plane twice and crashed it twiced. i gave up. I think ill try this plane and see how i do :)
Yes I missed an excellent chance last christmas I was all set to go Ah well
The way the weather has been going you may not have to wait very long. Keep warm!
Hi Mate, yea the Corsair is a fun and easy plane to fly and taxi around. A good plane to learn on and that can grow with you.
Would love to be in Seattle in the snow I missed a chance of doing that last year
Thanks mate, Yea I needed to replace the prop (+-$3), and add a little tape 2 inch piece of tape to the cowl. That was it. Thanks of the comment!
Good flying , admire your nerves with take off over concrete kerb at dockside what was the actual damage aftre nosing into water ?
Thank you, I am glad you like it!
lol great vid
man that was just asking to happen when u fly over water!!!
stupid toy