• RasPiO Shop
  • Pro Hat
  • Analog Zero
  • Duino
    • duino-assembly
    • duino-setup
    • duino-programming
    • duino-videos
    • lcd20
  • RasPiO Products
    • inspiring
    • Pro Hat
    • Analog Zero
    • Duino
      • lcd20
    • Portsplus
    • GPIO ruler
    • GPIO Zero ruler
    • Breakout
    • 7 Seg kit
  • About RasPiO®
RasP.iO

Category Archives: Uncategorized

Digispark sketch for RasPiO InsPiRing

Posted on March 16, 2019 by alex

Use the Arduino IDE with the Adafruit DotStar library
Data Pin 1
Clock Pin 0

// Simple strand test for Adafruit Dot Star RGB LED strip.
// This is a basic diagnostic tool, NOT a graphics demo...helps confirm
// correct wiring and tests each pixel's ability to display red, green
// and blue and to forward data down the line.  By limiting the number
// and color of LEDs, it's reasonably safe to power a couple meters off
// the Arduino's 5V pin.  DON'T try that with other code!

#include <Adafruit_DotStar.h>
// Because conditional #includes don't work w/Arduino sketches...
//#include <SPI.h>         // COMMENT OUT THIS LINE FOR GEMMA OR TRINKET
#include <avr/power.h> // ENABLE THIS LINE FOR GEMMA OR TRINKET

#define NUMPIXELS 24 // Number of LEDs in strip

// Here's how to control the LEDs from any two pins:
#define DATAPIN   1 //4
#define CLOCKPIN  0 //3
Adafruit_DotStar strip = Adafruit_DotStar(
  NUMPIXELS, DATAPIN, CLOCKPIN, DOTSTAR_BGR);
// The last parameter is optional -- this is the color data order of the
// DotStar strip, which has changed over time in different production runs.
// Your code just uses R,G,B colors, the library then reassigns as needed.
// Default is DOTSTAR_BRG, so change this if you have an earlier strip.

// Hardware SPI is a little faster, but must be wired to specific pins
// (Arduino Uno = pin 11 for data, 13 for clock, other boards are different).
//Adafruit_DotStar strip = Adafruit_DotStar(NUMPIXELS, DOTSTAR_BRG);

int delayval = 30;  // delay for 1 ms

void setup() {

#if defined(__AVR_ATtiny85__) && (F_CPU == 16000000L)
  clock_prescale_set(clock_div_1); // Enable 16 MHz on Trinket
#endif

  strip.begin(); // Initialize pins for output
  strip.show();  // Turn all LEDs off ASAP
}

void loop() {   

    for(int i=NUMPIXELS; i>-1; i--){
      strip.setPixelColor(i, strip.Color(255, 0, 0)); // pixels.Color takes RGB values in GRB format,  0,0,0  to 255,255,255
      strip.show();
      delay(delayval);
    }

    for(int i=0; i<NUMPIXELS; i++){
      strip.setPixelColor(i, strip.Color(0, 255, 0)); 
      strip.show();
      delay(delayval);
    }

    for(int i=NUMPIXELS; i>-1; i--){
      strip.setPixelColor(i, strip.Color(0, 0, 255)); 
      strip.show();
      delay(delayval);
    }

    for(int i=0; i<NUMPIXELS; i++){
      strip.setPixelColor(i, strip.Color(255, 0, 125)); 
      strip.show();
      delay(delayval);
    }

    for(int i=NUMPIXELS; i>-1; i--){
      strip.setPixelColor(i, strip.Color(0, 255, 125)); 
      strip.show();
      delay(delayval);
    }

    for(int i=0; i<NUMPIXELS; i++){
      strip.setPixelColor(i, strip.Color(255, 100, 0)); 
      strip.show();
      delay(delayval);
    }

    for(int i=NUMPIXELS; i>-1; i--){
      strip.setPixelColor(i, strip.Color(255, 125, 125)); 
      strip.show();
      delay(delayval);
    }
}

Posted in Uncategorized |

Arduino nano demo sketch for RasPiO InsPiRing

Posted on July 7, 2017 by alex

This works on Arduino nano

#include<FastLED.h>
#define NUM_LEDS 24
#define DATA_PIN 7
#define CLOCK_PIN 5

CRGBArray<NUM_LEDS> leds;

    void setup() { 
        FastLED.addLeds<APA102, DATA_PIN, CLOCK_PIN, BGR, DATA_RATE_MHZ(12)>(leds, NUM_LEDS);
    }

void loop() {
      FastLED.clear();
      // Turn the first led red for 1 second
      //leds[0] = CRGB::Red; 
      //leds[1] = CRGB::Green;
      //leds[2] = CRGB::Blue; 
      //FastLED.show();
      //delay(1000);

      for(int i=0; i<NUM_LEDS; i++){
          leds[i].setRGB( 255, 0, 0);
          delay(30);
          FastLED.show();
      }
      //FastLED.show();
      delay(1000);
      for(int i=0; i<NUM_LEDS; i++){
          leds[i].setRGB( 0, 255, 0);
      }
      FastLED.show();
      delay(1000);
      for(int i=0; i<NUM_LEDS; i++){
          leds[i].setRGB( 0, 0, 255);
      }
      FastLED.show();
      delay(1000);
}

Posted in Uncategorized |

RasPiO InsPiRing Arrival Tweets

Posted on June 29, 2017 by alex

I love seeing ‘arrival tweets’ when people get their KickStarter rewards…

NTP clock with @RasPiO1 InsPiRing 🙂 Excellent instructions and docs, as always. Cheers Alex (b) pic.twitter.com/iQDKNiugNn

— Darren Townsend (@ForrisHilier) June 26, 2017

Latest successful Kickstarter arrive from @RasPiTV #InsiRing pic.twitter.com/LRoQcArLIl

— Albert Hickey (@winkleink) June 28, 2017

Hurrah! Got home to find my Kickstarter @RasPiTV RasPiO inspiring had arrived.. there goes the evening. pic.twitter.com/T9yS6k9PSF

— mafiu (@mafiu) June 28, 2017

What an inspiring post today! pic.twitter.com/tp4Wumjl0H

— Andy Batey (@AndyBateyPi) June 28, 2017

@RasPiO1 yay arrived today pic.twitter.com/kv8LZf98lH

— Vincent Willcox (@TalkTechDOTInfo) June 28, 2017

Received my #InsPiRing Kickstarter kit from @RasPiTV today. Now to build. 😀

— Chris Le Cheminant (@Chemmy) June 28, 2017

Soldering done pi zero and phat. @RasPiO1 @RasPiTV pic.twitter.com/TZFccBR1R9

— Vincent Willcox (@TalkTechDOTInfo) June 28, 2017

Clock inspiring raspberry pi @RasPiTV @RasPiO1 pic.twitter.com/BowFkw4dva

— Vincent Willcox (@TalkTechDOTInfo) June 28, 2017

I do enjoy getting post like this – another successful #Kickstarter project by @RasPiO1 Thanks Alex, that's my evening sorted… pic.twitter.com/jMD9M0rR22

— Mark Cantrill (@AstroDesignsLtd) June 28, 2017

22 minutes later… following a trek to the workshop, all soldered, including the header on the Pi Zero and put the chickens to bed! pic.twitter.com/SDbKS312fu

— Mark Cantrill (@AstroDesignsLtd) June 28, 2017

Look, what was waiting for me when I got home yesterday, can't wait to play 😎 Alex @RasPiTV knows how to run a Kickstarter! pic.twitter.com/MsQE37WM17

— Brian Corteil 🤖 (@CannonFodder) June 29, 2017

…and amongst the building carnage arrives a treat from @RasPiO1. "Finish the house and the wife might let you play with me" it whispers… pic.twitter.com/WScWKP9DGw

— Average Man (@AverageManvsPi) June 29, 2017

Oh man – going away for few days and postie delivers these @RasPiO1 goodies. Can I stay home? pic.twitter.com/tcXi7AOgjC

— Nathan Cubitt (@NathanCubitt) June 29, 2017

A package full with fun from @RasPiO1 just arrived in Austria. #RaspberryPi #inspiring pic.twitter.com/wwVKjPFyxV

— Alex van Dulmen (@alexvandulmen) June 29, 2017

The weekends excitement has arrived! @RasPiTV @RasPiO1 Congrats Alex! 🚨🚨🚨 pic.twitter.com/Q58KBHDc2r

— Claire Pollard (@thetuftii) June 29, 2017

Yay – exciting post from @RasPiO1 pic.twitter.com/HsN7nPHOld

— Spencer Organ (@makercupboard) June 29, 2017

Fabulous—got mine today. https://t.co/hIKaOjFKBi

— Steve Lloyd (@zosho) June 29, 2017

Iiiiiit's postbag! Some lovely bits from @RasPiTV @pimoroni @linuxformat and some final parts for my mini Pi arcade cabinet pic.twitter.com/waM0XLghDj

— biglesp (@biglesp) June 29, 2017

Got my @RasPiO1 InsPiRing package today. Excellent! And waaay ahead of schedule. Nice one, Alex! pic.twitter.com/VKAMOEMiws

— Michael (Mike) Horne (@recantha) June 29, 2017

Love kickstarters, Christmas multiple times a year! Thanks @RasPiO1 I’d better get around to doing something with them! pic.twitter.com/MKWn0j82Ea

— Steve Upton (@ste5eu) June 30, 2017

My @RasPiO1 InsPiRing package just arrives. Can't believe it happens on June 30th 🙂 Thank you so much Alex @RasPiTV ! pic.twitter.com/ZxKj4ZdrM8

— UUGear (@UUGear) June 30, 2017

@RasPiO1 ntp clock arrived and built (no Zero header included so used spare Pi3). Code mod to mix colours when hands overlap. Looks good! pic.twitter.com/CfevhtRfv8

— Simon Reap (@simon3270) June 30, 2017

@RasPiTV They have arrived :-) Let the fun begin and with a zero as well. Let the solde(ring) begin pic.twitter.com/mX9dTn3vZD

— Clive LH – G7SVI (@Raider568) June 30, 2017

Yay – Weekend Pi activity sorted @RasPiTV #RaspberryPi pic.twitter.com/Q8s8wfdtZQ

— David Saul (@David_MS) July 1, 2017

Merci @RasPiTV pour l'envoi rapide du set " Inspiring ". pic.twitter.com/8Cfxe5tTCi

— Hofer Jean-Claude (@pegaze66) July 1, 2017

#raspio InsPiRing soldering support solution @RasPiTV pic.twitter.com/XWVn7uQ1Iz

— David Saul (@David_MS) July 2, 2017

RasPiO InsPiRing built & working – Yay. @RasPiTV #raspberrypi pic.twitter.com/LtJyAcDcCY

— David Saul (@David_MS) July 2, 2017

Something a bit more soothing for Sunday evening #RasPiO InsPiRing @RasPiTV #RaspberryPi pic.twitter.com/oLVdZvOVku

— David Saul (@David_MS) July 2, 2017

Soldering time! Building this blinky bit of #RaspberryPi inspiration! Thanks @RasPiTV pic.twitter.com/WAiuIpalyU

— Darrell Little (@Darrell_VA) July 2, 2017

Yippie! I got all the bits soldered in correctly! RasPiO InsPiRing demo from @RasPiO1 #RaspberryPi #blinky #LED #makers pic.twitter.com/br6Yh1XSc5

— Darrell Little (@Darrell_VA) July 3, 2017

@RasPiO1 Inspiring Driver arrived in Hong Kong pic.twitter.com/C1dP8dLMJQ

— N. Zieg. (@xingewen) July 3, 2017

Mail to the EU still works, @RasPiO1! #InsPiRing #kickstarter pic.twitter.com/emuZl1iEKr

— FrederickVandenbosch (@f_vdbosch) July 4, 2017

The @pimoroni Blinkt! examples works on InsPiRing Straight-8 from @RasPiO1 with this code https://t.co/FRMGrkzEsV Thanks to pigpio example. pic.twitter.com/rsW31tsOhl

— David Glaude (@DavidGlaude) July 5, 2017

@RasPiTV InsPiRing Circles + Zero arrived in Sweden !

— Niklas Christiansson (@PappaNiklas) July 5, 2017

Just arrived in North Dakota, @RasPiTV Thanks Alex for a quality InsPiRing Driver/Circle on @kickstarter https://t.co/36dyfOouJC pic.twitter.com/m0ik7Lde33

— Paul Jensen (@paulj55) July 5, 2017

received my @rasp.io Inspiring Kickstarter in Canada today! YEAH!https://t.co/2iFhVqzhAb

— Cleo Qc (@Cleo_Qc) July 5, 2017

@RasPiTV @RasPiO1 InsPiRing NTP clock – my version! Code: https://t.co/wmT4AEFGJN Blog: https://t.co/ZJ4ecQUMFU

— OhThreeFive (@ohthreefive) July 6, 2017

@RasPiO1 New solder station arrived today to replace aging Antex. Now I can start on my Inspiring kit! pic.twitter.com/YNpcKfn7in

— Robin Newman (@rbnman) July 7, 2017

@RasPiTV My new solder station made it quick and easy to get my Inspiring kit built this afternoon. pic.twitter.com/p2TrwyvUW4

— Robin Newman (@rbnman) July 7, 2017

@Sonic_Pi @raspitv Inspiring Sonic Pi Used an osc server to receive data from Sonic Pi and the ring plays FrereJaques pic.twitter.com/uViTp3Z8qY

— Robin Newman (@rbnman) July 8, 2017

@Sonic_Pi @RasPiTV here's the video. Inspiring Sonic Pi pic.twitter.com/nKXbrrYOqE

— Robin Newman (@rbnman) July 8, 2017

@Sonic_Pi @RasPiO1 another Inspiring Sonic Pi duo. This time SP is on a remote Mac controlling the ring on the Pi pic.twitter.com/9JoKhKosJQ

— Robin Newman (@rbnman) July 8, 2017

Expensive bedside lamp? :p @RasPiO1 pic.twitter.com/I8aW9bKZJE

— Michael (Mike) Horne (@recantha) July 9, 2017

@RasPiO1 got "insPiRing" working on an arduino using a library APA102 rather than FastLED

— steven gale (@windy54) July 10, 2017

I've levelled up my @RasPiO1 InsPiRing NTP clock! Now with added quarterly minute updates & a dimmer night light: https://t.co/d0AaZkAQLJ

— OhThreeFive (@ohthreefive) July 10, 2017

@RasPiTV my RasPio Inspiring arrived in the land down under today. 😀 pic.twitter.com/DBDeFacIC9

— Cathy O'Malley (@spud01au) July 11, 2017

@Sonic_Pi @RasPiO1 Medley of 3 “Inspiring” Sonic Pi pieces, on a Pi. Here is a snippet. Longer version https://t.co/AROVQmAVr4 pic.twitter.com/B26GhZWqn5

— Robin Newman (@rbnman) July 15, 2017

@RasPiO1 New function to make InsPiRing circle into a rainbow: https://t.co/wffkz50YP2 (need to tweak RGB values for orange and violet) pic.twitter.com/ApwAfC6mCF

— OhThreeFive (@ohthreefive) July 29, 2017

Finally got my NTB Clock running. Great @kickstarter from @RasPiTV! #Picademy #MakerEd pic.twitter.com/AskiymnZKz

— Nicholas Provenzano (@thenerdyteacher) August 12, 2017

Posted in Uncategorized |

Alex Eames – MagPi Community Profile

Posted on November 24, 2016 by alex

The Raspberry Pi Magazine The MagPi featured Alex in Community Profile this month

Community profile Alex Eames RasPi.TV & RasPiO

Community profile Alex Eames RasPi.TV & RasPiO

Posted in Uncategorized |

RasPiO Analog Zero Featured in Make Article: 5 HATs to Take Your Raspberry Pi Zero Project to the Next Level

Posted on September 28, 2016 by alex

Analog Zero made it into Make Magazine’s top 5 Pi Zero Hats along with a couple from Pimoroni and Average Man/Pihut. Read the article here.

Screen grab from Make

Screen grab from Make

Posted in Uncategorized |

PiSupply Now Stocking RasPiO

Posted on November 27, 2014 by alex

Delighted to announce Pi-Supply Now stocking RasPiO Portsplus 2 and Port labels boards

Posted in Uncategorized |

RasP.iO Sponsoring PiWars at CamJam

Posted on August 1, 2014 by alex

Delighted to announce that RasP.iO is sponsoring some prizes at the forthcoming PiWars Robot competition run by Mike Horne and Tim Richardson at the upcoming December CamJam.

Posted in Uncategorized | Tags: PiWars |

Kiwi Electronics now stocking RasPiO®

Posted on April 30, 2014 by alex

I’m delighted to announce that Kiwi Electronics in the Netherlands are now stocking the RasPiO® Breakout, Breakout Pro and port labels boards.

http://www.kiwi-electronics.nl/raspio-breakout-board-voor-raspberry-pi

http://www.kiwi-electronics.nl/raspio-breakout-pro-board-voor-raspberry-pi

http://www.kiwi-electronics.nl/raspberry-pi/gpio-accessoires/raspio-port-labels-board

Posted in Uncategorized |

RasPiO

Posted on February 1, 2013 by alex

RasPiO ® launched on 21 March 2014.

Further information here

Posted in Uncategorized | Leave a comment |

NEW Product!

NEW RasPiO® Breadboard Pi Bridge New RasPiO Breadboard Pi Bridge

Pi Ports to Breadboard in Numerical Order

Check out NEW RasPiO Online Shop New products being added daily.

Pages

  • inspiring
  • prohat
  • analogzero
  • gpioruler
  • gpiozeroruler
  • duino
    • duino-assembly
    • duino-programming
    • duino-setup
    • duino-videos
    • lcd20
  • portsplus
  • Introducing RasPiO®
  • range
  • RasPiO Breakout

Archives

  • May 2019
  • March 2019
  • October 2018
  • January 2018
  • July 2017
  • June 2017
  • December 2016
  • November 2016
  • September 2016
  • December 2015
  • November 2014
  • October 2014
  • August 2014
  • July 2014
  • May 2014
  • April 2014
  • March 2014
  • February 2013
Privacy & Cookies: This site uses cookies. By continuing to use this website, you agree to their use.
To find out more, including how to control cookies, see here: Cookie Policy

Pages

  • analogzero
  • duino
    • duino-assembly
    • duino-programming
    • duino-setup
    • duino-videos
    • lcd20
  • experiment
  • gpioruler
  • gpiozeroruler
  • inspiring
  • Introducing RasPiO®
  • portsplus
  • prohat
  • range
  • RasPiO Breakout
  • RasPiO Breakout Pro
  • RasPiO Port labels

Archives

  • May 2019
  • March 2019
  • October 2018
  • January 2018
  • July 2017
  • June 2017
  • December 2016
  • November 2016
  • September 2016
  • December 2015
  • November 2014
  • October 2014
  • August 2014
  • July 2014
  • May 2014
  • April 2014
  • March 2014
  • February 2013

WordPress

  • Log in
  • Entries feed
  • Comments feed
  • WordPress.org
© Alex Eames 2012-19