Watch “Ellen DeGeneres with The treadmill freak 2 April 2015” on YouTube

Ellen DeGeneres with The treadmill freak 2 April 2015: youtu.be/25GsE5Yy6po

Dining Etiquette & Table Management

Found this wonderful video on dining etiquette & table management.

Advantages of VexIQ Kit

The VexIQ robot system seems to have several advantages over the Lego Mindstorm.

1) Price:   VexIQ super kit is only $299.99 and contains the following:

The Super Kit is an all-encompassing introduction to STEM and robotics. Students can use the familiar handheld Controller to drive robots right out of the box or program them to run autonomously using the additional Smart Sensors. While the included Clawbot IQ instructions help students easily build their first robot, the intuitive snap-together parts mean the sky is the limit for their VEX IQ creations.

  • Over 850 Structural & Motion Components
  • 4 Smart Motors, 7 Sensors, Robot Brain, Controller & Batteries Included
  • Storage Bin & Tray included for organized storage of all parts

The Lego Mindstorm kit is about the same price, but limits you to 4 sensors and 4 motors.  The VexIQ will let you hookup 12 of either.  Also, there are a lot more gears and drive chain options that will allow for a wide variety of robots to be built:

You can program it in RobotC or using a graphical environment similar to Scratch called ModKit.

 

Micro Quad Copter with First Person display – everything you need for $389

This looks like a good way to get into the quad copter/first person camera/display hobby.  Everything you need in one box for less than $400.

www.horizonhobby.com/nano-qx-fpv-rtf-with-safe-technology-blh7200

 

Amazing Ultra Micro Quad
The tiny Blade® FPV Nano QX quadcopter is a totally immersive RC experience you can take everywhere. Incredibly light and surprisingly durable, the FPV Nano QX can be flown in spaces no bigger than an office cubicle. Its potent motors are smooth and Spektrum™ 2.4GHz DSMX® radio technology delivers outstanding 4-channel maneuverability. But it’s the exclusive SAFE® technology built-in that offers a quadcopter experience like no other. That’s because the specially tuned SAFE system makes sophisticated flight envelope protection possible so flying is incredibly easy and more fun-even if it’s your first time. Plus, the Spektrum™ ultra micro FPV camera is already installed which means you can get started in the short time it takes to charge the batteries.

SAFE™ Technology
The Blade® FPV Nano QX features Horizon Hobby’s newest innovation in RC flight, SAFE® technology. This revolutionary system optimizes the FPV Nano QX for precision hovering and accuracy in two flight modes.

 

Last Week Tonight with John Oliver – Elected Judges

I stumbled on John Oliver’s show “Last Week Tonight” a few weeks ago.  It is very humorous commentary.  Here is the latest one about issues with elected judges.  It does have a lot of bad language, so not recommended for kids.  But it will keep the adults entertained.

Some things to look forward to:

2015-03-02_07-22-26-alabama

 

2015-03-02_07-23-50-dill

 

You might also be questioning the location of Bolivia.

Wil Smith’s Wisdom

You want something?

Go it.

Period!

Don’t let anyone tell you that you can’t have it.

1.14 Differentiators

differentiator

This is an example of a differentiator.  Send a signal in, and the signal you get out will be just the edges of the wave form.    If the input signal is a square wave, then the output will be a series of spikes at each of the sides of the square wave

Incidentally, having a wave that includes spikes could indicate that you have unintentional capacitive coupling.

3D printer that can print circuits ($9,000)

voxel8_3dprinter_01-590x330

The Voxel8 3D printer (www.voxel8.co/) can print cavities to place electronics and components and print conductive material to connect them.  The video from CES will give you an idea of what they can do.  They print a quadcopter frame, pausing to have the controller board, motors, LED inserted in, and print the conductive material to connect them together.  Pretty amazing that it is only $9,000.

Voxel8 3D printer can print a complete quadcopter, including the circuits

1.13 RC circuits: V and I versus time

Let’s look at how voltage (V) and current (I) change with respect to time in circuits with capacitors and resistors.

Take a look at this circuit:

rc-circuit

Close the switch S1 connecting the capacitor (C1) to the battery (Vi) through resistor (R1).  How fast will C1 charge?

That is determined by the relationship between R1 and C1.  It is known as the RC time constant.

 

Assuming that C1 = 1 microfarad and R1 = 1k ohm, then the time constant will be 1.   And we have a shortcut that it will be within 1% of the input voltage with in 5RC, so within 5 seconds.

 

 

Logging 3 photo-resistors

 

I have three photoresistors in my study that are measuring light coming from 3 directions and showing the live and historical data on the graphs below.

IMG_9037

How did I do it?

Simple circuit.  Here is how the Arduino is hooked up.  (The resistors are 10k.)

ConnectionDiagram

/* Simple test of the functionality of the photo resistor

Connect a resistor (around 10k is a good value, higher
values gives higher readings) from pin 0 to GND. (see appendix of arduino notebook page 37 for schematics).

—————————————————-

PhotoR 10K
+5 o—/\/\/–.–/\/\/—o GND
|
Pin 0 o———–

Similar setup for Pin 1 & Pin 2.

—————————————————-
*/

int lightLeftPin= A0;
int lightMidPin =A1;
int lightRightPin = A2;

int lightLeft, lightMid, lightRight;

void setup()
{
Serial.begin(9600); //Begin serial communcation
}

void loop()
{

lightLeft = analogRead(lightLeftPin);
lightMid = analogRead(lightMidPin);
lightRight = analogRead(lightRightPin);

Serial.println(“###BOD”);
Serial.print(“light_right,”);
Serial.println(lightRight);
Serial.println(“###EOD”);
delay(15000);

Serial.println(“###BOD”);
Serial.print(“light_mid,”);
Serial.println(lightMid);
Serial.println(“###EOD”);

delay(15000);

Serial.println(“###BOD”);
Serial.print(“light_left,”);
Serial.println(lightLeft);
Serial.println(“###EOD”);

delay(15000);
}

I then setup an account at ThingSpeak.com

And to connect the arduino to the internet I used my laptop and a program called Seriot.  It can be downloaded from:

 

nuewire.com/seriot/

This program will listen to the serial port and write the data to ThingSpeak.com

 

seriot

You can then use Restful API calls to get to the data and to chart it.

They have a nice ChartEditor

thingspeak.com/channels/23070/charts/

thingspeak-charteditor

ThingSpeak