kiwidave1
kiwidave1
  • Видео 21
  • Просмотров 64 675

Видео

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
dice run 2015 Christchurch
Просмотров 21 тыс.9 лет назад
The Other Place.
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.
BTB Seattle-Lewiston run 7/2013
Просмотров 8211 лет назад
Crusing and bombing..
Kiwidave1's M.A.N Body Octane Review
Просмотров 86012 лет назад
My video review of Body Octane
SNS Focus XT Review
Просмотров 3,8 тыс.12 лет назад
Screw how it feels to chew gum. This is how it feels to drink Focus XT!
snow.wmv
Просмотров 9513 лет назад
just playing around at the mountian on Rage and Pump.
The New and Improved White Flood V2.0
Просмотров 1,8 тыс.13 лет назад
Log video for the new Controlled Labs Whiteflood
Animal Rage and Pump Log
Просмотров 10 тыс.13 лет назад
Animal Rage and Pump Log
Seattle Snow December 2008
Просмотров 79916 лет назад
Seattle Snow December 2008
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
Air to air RC helicopters doing 3D
Просмотров 1,6 тыс.16 лет назад
Air to air RC helicopters doing 3D

Комментарии

  • @marcowilms1360
    @marcowilms1360 4 года назад

    hast du ein code ?

  • @manukalias
    @manukalias 4 года назад

    Neighbors would certainly call 911 😜😜

  • @techbrain6932
    @techbrain6932 5 лет назад

    Code

  • @giovanninappa141
    @giovanninappa141 5 лет назад

    V huse igqbinmoe

  • @Ricky80838
    @Ricky80838 5 лет назад

    That was a long ride just to do a U turn

  • @josephnatana5305
    @josephnatana5305 6 лет назад

    Mmwwaapp..mmwwaapp!.. surprised you didn't shake your head off from all the head turning lol. But nice run on your cam my bro..

  • @donnamechelemarchessault1751
    @donnamechelemarchessault1751 6 лет назад

    cool light effect

  • @usat42
    @usat42 7 лет назад

    this video is all over the freakn place

  • @kiwidave1
    @kiwidave1 7 лет назад

    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; } }

  • @andrejspotapovs4046
    @andrejspotapovs4046 7 лет назад

    Can You give a code, please?!

    • @fretilimo
      @fretilimo 6 лет назад

      It´s in the library. [FastLED example] DemoReel100

  • @SkinBintin
    @SkinBintin 8 лет назад

    Nice video mate. Where'd everyone leave from at the start? Was that out around Kiapoi or somewhere?

  • @rangipaul3712
    @rangipaul3712 10 лет назад

    GREAT VIDEO BRO, MEAN GO-PRO. I SAW MYSELF TO LOL, MEAN

  • @mintoo2cool
    @mintoo2cool 10 лет назад

    ahaha, the most honest review there is ...

  • @yuyumohamed1940
    @yuyumohamed1940 10 лет назад

    so he's actually alive, holy shit

  • @oliviawoodward7778
    @oliviawoodward7778 10 лет назад

    You are crazy as hell amigo.

  • @samuski36
    @samuski36 11 лет назад

    All those beautiful patches! I don't even ride, but I wish I had known about this event!

  • @chavisgrandpa
    @chavisgrandpa 11 лет назад

    AWESOME VIDEO! THANX!

  • @bobbyviolatorsmc5587
    @bobbyviolatorsmc5587 11 лет назад

    Excellent Video! NO ONE will destroy our culture1

  • @eshum86
    @eshum86 12 лет назад

    How did you take that fist full of pills so easy?

  • @CoffeeKiller_
    @CoffeeKiller_ 12 лет назад

    lol wtf

  • @xtheritalinx
    @xtheritalinx 12 лет назад

    I thought I was the only one who sucks the residual out of the cap first. haha I'm so relieved.

  • @S1Fitness
    @S1Fitness 12 лет назад

    did you say that animal supplied these products to you? or did you buy them?

  • @jqcyclops
    @jqcyclops 12 лет назад

    Any updates on this? Also Im a runner(endurance athlete) and how do you think it does for cardio guys???

    • @brody5211
      @brody5211 7 лет назад

      jqcyclops Holland and Barrett iso energy I recommend it highly for running or cycling

  • @earthpet
    @earthpet 12 лет назад

    LOL

  • @lovestheh20
    @lovestheh20 12 лет назад

    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

  • @caseyvabc123
    @caseyvabc123 12 лет назад

    hell yeah brotha!

  • @caseyvabc123
    @caseyvabc123 12 лет назад

    epic classic! fn spelling bee :D

  • @neorecharge
    @neorecharge 12 лет назад

    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..

  • @eujeeves
    @eujeeves 12 лет назад

    this powder reminds me of no-explode pre workout supp. I never did like the taste.

  • @BAKPower1
    @BAKPower1 13 лет назад

    haha i like

  • @BAKPower1
    @BAKPower1 13 лет назад

    Dave!!!!!!!

  • @kiwidave1
    @kiwidave1 13 лет назад

    @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!

  • @MrJessej80
    @MrJessej80 13 лет назад

    Thats actually version 3. Controlled Labs made 3 versions of this product.

  • @sdgsvsv
    @sdgsvsv 13 лет назад

    cool stuff man

  • @bunnyboiler83
    @bunnyboiler83 13 лет назад

    Hi What is that green drink your drinking? thanks

  • @HotDogWater44
    @HotDogWater44 13 лет назад

    great review man !

  • @Skyfire_Mechanics
    @Skyfire_Mechanics 14 лет назад

    wistling death F4U corsair

  • @matrobsti
    @matrobsti 14 лет назад

    nicely done mate. good flying ang good nerves.

  • @rg26100
    @rg26100 15 лет назад

    NOOOOO! Get the Supercub first, and then use a simulator!

  • @IceRoadTrucker1000
    @IceRoadTrucker1000 15 лет назад

    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 :)

  • @SarahOutdoors1957
    @SarahOutdoors1957 15 лет назад

    Yes I missed an excellent chance last christmas I was all set to go Ah well

  • @kiwidave1
    @kiwidave1 15 лет назад

    The way the weather has been going you may not have to wait very long. Keep warm!

  • @kiwidave1
    @kiwidave1 15 лет назад

    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.

  • @SarahOutdoors1957
    @SarahOutdoors1957 15 лет назад

    Would love to be in Seattle in the snow I missed a chance of doing that last year

  • @kiwidave1
    @kiwidave1 15 лет назад

    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!

  • @pdel7007
    @pdel7007 15 лет назад

    Good flying , admire your nerves with take off over concrete kerb at dockside what was the actual damage aftre nosing into water ?

  • @kiwidave1
    @kiwidave1 15 лет назад

    Thank you, I am glad you like it!

  • @zmicie
    @zmicie 15 лет назад

    lol great vid

  • @redflyier1993
    @redflyier1993 16 лет назад

    man that was just asking to happen when u fly over water!!!

  • @apatheticempathy
    @apatheticempathy 16 лет назад

    stupid toy