Schlagwort: furby

  • The best Secret Santa gift in an oversized Furby

    The best Secret Santa gift in an oversized Furby

    Reading Time: 2 minutes

    Some of YouTube’s most famous makers get together every year for a Secret Santa gift exchange. We already showed you the heartbeat-controlled drum machine that Sam Battle created for Ali Spagnola, but what did Battle receive? Roboticist extraordinaire James Bruton drew Battle and decided to build him this oversized robotic Furby.

    Bruton started by skinning a normal Furby to take a look inside and find out how it ticks. The current models are a bit different than the originals from a couple of decades ago, but they’re still pretty simple. There are basic mechanical linkages for the animatronic movement, sensors to detect touch and movement, a speaker for the sound, and cheap LCD eyes. Bruton didn’t reuse any of those components, but this dissection gave him some direction.

    With a Furby anatomy lesson under his belt, Bruton designed the scaled-up version with a 3D-printed skeleton. That houses several servo motors to actuate the eyes, eyelids, ears, and mouth, along with two small linear actuators that let it rock back and forth. An Arduino Mega 2560 board controls those motors, as well as a DFRobot DFPlayer Mini MP3 player for the sound effects. An infrared proximity sensor lets the Arduino detect nearby movement, so it can react. Under normal conditions, it just cycles through pre-programmed movement and audio. But if the infrared proximity sensor triggers, the Arduino will switch to something new immediately.

    [youtube https://www.youtube.com/watch?v=jV4xyMilqn0?feature=oembed&w=500&h=281]

    The final step was to cover the giant Furby in its signature fur. Bruton left an opening in the chest where there is a cavity big enough for a normal Furby to reside, complete with LED illumination. That has some concerning implications, but the entire Furby aesthetic skirts the creepy line and so it seems fitting.

    The post The best Secret Santa gift in an oversized Furby appeared first on Arduino Blog.

    Website: LINK

  • Raspberry Pi + Furby = ‘Furlexa’ voice assistant

    Raspberry Pi + Furby = ‘Furlexa’ voice assistant

    Reading Time: 3 minutes

    How can you turn a redundant, furry, slightly annoying tech pet into a useful home assistant? Zach took to howchoo to show you how to combine a Raspberry Pi Zero W with Amazon’s Alexa Voice Service software and a Furby to create Furlexa.

    [youtube https://www.youtube.com/watch?v=aCOsM-4NEKs?feature=oembed&w=500&h=281]

    Furby was pretty impressive technology, considering that it’s over 20 years old. It could learn to speak English, sort of, by listening to humans. It communicated with other Furbies via infrared sensor. It even slept when its light sensor registered that it was dark.

    Furby innards, exploded

    Zach explains why Furby is so easy to hack:

    Furby is comprised of a few primary components — a microprocessor, infrared and light sensors, microphone, speaker, and — most impressively — a single motor that uses an elaborate system of gears and cams to drive Furby’s ears, eyes, mouth and rocker. A cam position sensor (switch) tells the microprocessor what position the cam system is in. By driving the motor at varying speeds and directions and by tracking the cam position, the microprocessor can tell Furby to dance, sing, sleep, or whatever.

    The original CPU and related circuitry were replaced with a Raspberry Pi Zero W

    Zach continues: “Though the microprocessor isn’t worth messing around with (it’s buried inside a blob of resin to protect the IP), it would be easy to install a small Raspberry Pi computer inside of Furby, use it to run Alexa, and then track Alexa’s output to make Furby move.”

    What you’ll need:

    Harrowing

    Running Alexa

    The Raspberry Pi is running Alexa Voice Service (AVS) to provide full Amazon Echo functionality. Amazon AVS doesn’t officially support the tiny Raspberry Pi Zero, so lots of hacking was required. Point 10 on Zach’s original project walkthrough explains how to get AVS working with the Pimoroni Speaker pHAT.

    Animating Furby

    A small motor driver board is connected to the Raspberry Pi’s GPIO pins, and controls Furby’s original DC motor and gearbox: when Alexa speaks, so does Furby. The Raspberry Pi Zero can’t supply enough juice to power the motor, so instead, it’s powered by Furby’s original battery pack.

    Software

    There are three key pieces of software that make Furlexa possible:

    1. Amazon Alexa on Raspberry Pi – there are tonnes of tutorials showing you how to get Amazon Alexa up and running on your Raspberry Pi. Try this one on instructables.
    2. A script to control Furby’s motor howchooer Tyler wrote the Python script that Zach is using to drive the motor, and you can copy and paste it from Zach’s howchoo walkthrough.
    3. A script that detects when Alexa is speaking and calls the motor program – Furby detects when Alexa is speaking by monitoring the contents of a file whose contents change when audio is being output. Zach has written a separate guide for driving a DC motor based on Linux sound output.
    Teeny tiny living space

    The real challenge was cramming the Raspberry Pi Zero plus the Speaker pHAT, the motor controller board, and all the wiring back inside Furby, where space is at a premium. Soldering wires directly to the GPIO saved a bit of room, and foam tape holds everything above together nice and tightly. It’s a squeeze!

    Zach is a maker extraordinaire, so check out his projects page on howchoo.

    Website: LINK