element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • About Us
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
element14's The Ben Heck Show
  • Challenges & Projects
  • element14 presents
  • element14's The Ben Heck Show
  • More
  • Cancel
element14's The Ben Heck Show
Forum Show Off Your Build
  • Blog
  • Forum
  • Documents
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join element14's The Ben Heck Show to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • Replies 109 replies
  • Subscribers 39 subscribers
  • Views 10881 views
  • Users 0 members are here
Related

Show Off Your Build

ChristyZ
ChristyZ over 15 years ago

How to upload a Video

 

1 - On the right column, on the "Actions" box, click on "Start a discussion". The Discussion editor page will load.

2 - Once on the "Discussions" editor, give your discussion any name you want: My First Build

3 - To upload a video, click on the video icon (see image bollow) on the "Discussions" editor window

image

 

4 - Choose from where the video is going to be uploaded: from your computer, from your videos, or from the web

image

5 - Press "Submit video"

 

 

How to upload a picture

 

1 - Click on  "Insert image" icon of the "Discussions" editor

image

 

2 - On the "Inset Image" screen, follow the steps to insert your image

image

  • Sign in to reply
  • Cancel

Top Replies

  • Former Member
    Former Member over 14 years ago +2
    My son was sent to Iraq and he wanted to take his game console and laptop. The big issue for him was the shipping and the sand. He bought a Pelican brand gun case, some foam from the craft store and a…
  • Former Member
    Former Member over 12 years ago +2
    Halloween Costume- Insanely Geeky!! Mr Arcade Halloween Costume on youtube!! I made it! Full description is in the video description on Youtube including a quick video of how I made it!! Could you make…
  • Former Member
    Former Member over 15 years ago +1
    Ben Heck is pretty much my role model, ever since i saw his first 360 laptop, im 15, and ive been repairing computers and electronics since i was about 6 or 7, im great with soldering, and working with…
  • Former Member
    Former Member over 13 years ago in reply to Former Member

    Thanks but if i wire it to the power switch then when i stand up it will turn the computer off after 5 secounds regardless of the settings, unless you know how to turn that off but i think its a hardwired function

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • Former Member
    Former Member over 13 years ago

    HEY BEN HECK I have a challenge can you turn the nintendo 3DS into a tabletimage

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • Former Member
    Former Member over 13 years ago

    Dear Ben Heck,

         I have had the idea of building a 360 laptop but I do not have the tool nor the money to buy them. I am not

    very electronically inclined but I have built a computer tower when I was twelve with the help of my great uncles.

    I was wondering if you could build me a 360 laptop with hdmi. how much would it cost to make? i would apreciate

    your opinion. Thank you.

     

    Dakota

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • Former Member
    Former Member over 13 years ago

    Hi, Ben! I know you are great at making projects for laziness, and I have a challenge for you!

     

    Have you ever noticed that the boom of your headset gets in the way? You should create some sort of project to solve this issue, like when it detects something in front of the mic, it automatically raises it so you can take a bite of your food!

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • Former Member
    Former Member over 13 years ago

    I wonder how the wheelchair update is comping along. It seemed odd to me that the motors were so noisy -- like the PWM frequency was out of whack.

     

    I design circuits and code (for the Parallax Propeller chip) for a friend who makes pan/tilt controllers.  One of the things I do on start-up is read the raw values from the X and Y sticks and call these the "idle" position.  The deadband is surrounds that.  What this can lead to, especially with low-cost joysticks is an offset idle value (i.e., not in the center of the pot range).  What I do then is re-scale the new values on either side of the pot with a simple method (for those that have never seen Spin, the operators for less-than-or-equal and greater-than-or-equal are different from what you're used to).

     

    pub scale(raw, range, minout, maxout)

     

    '' Scales raw (0 to range) value to new range: minout to maxout

     

      if (raw =< 0)

        return minout

      elseif (raw => range)

        return maxout

      else

        return ((raw * (maxout - minout)) / range) + minout

     

    This is just a simple mx+b thing but helps take care of all the oddites of inexpensive joysticks and the use of a deadband. 

     

    That was a nice thing to do for that couple. If they have boy, will they name him Ben?

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • Former Member
    Former Member over 13 years ago

    I don't know much about internet forum etiquette, so I'll just describe my challenge:

    I challenge Ben Heck to mount solar panels on a backpack, have them charge a rechargeable battery (or battery pack), and subsequently have the battery be used to power a small, low power-consumption Linux PC (such as the Raspberry Pi), with the option to switch to powering a USB hub (for charging other devices). The backpack would need to be relatively small (for easy mobility) and not too heavy (less than 15 pounds would probably be good). If possible, he could add a screen and keyboard (and speakers?) in one of the larger pockets. I am currently 14, and I'm going to be moving to a place with a lot or sunlight, but not as much in the way of electrical outlets, and it would be nice if I could continue my random computing projects and such. If Ben ever reads this, just private-message me through Element14.

    I'll be posting this as both a discussion and a reply to "Show Off Your Build."

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • benheck
    benheck over 13 years ago in reply to Former Member

    That's a cool idea Kevin! There's actually an upcoming episode along those lines, but the headset one might be good for the future too. Cheese dip on your mic for the last time!

     

    Jon, yes the issue was we used the Arduino PWM giving us a pulse in the audible range.

     

    Something like the Propeller frequency counters would be awesome. Don't worry, I haven't forgotten the Prop! (or the Prop 2, should it ever arrive!)

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • Former Member
    Former Member over 12 years ago

    Halloween Costume- Insanely Geeky!!

     

    Mr Arcade Halloween Costume on youtube!!

     

    I made it! Full description is in the video description on Youtube including a quick video of how I made it!!

     

    Could you make it with a Rasberry Pi and make it better, cheaper and lighter?

    (Like a repeat episode of the improving the portable Atari!!)

     

    Let me know ... time is short until Halloween!!

     

     

    You don't have permission to edit metadata of this video.
    Edit media
    x
    image
    Upload Preview
    image

     

    Happy Halloween! >>>>>>>>>

    • Cancel
    • Vote Up +2 Vote Down
    • Sign in to reply
    • Cancel
  • Former Member
    Former Member over 12 years ago

    Hello, since I know nothing about internet manners, I'll get straight to the point. Would it be possible for you to do something along the lines of Yoshi's Boxx? Yoshi's Boxx was a ATX computer case with a GameCube, PS2, XBox, and Gaming PC in it. Could it be possible to do this with modern consoles? I know it would require quite a bit of cooling, but I think it might be possible.

     

    Sincerly,

           TheYoungHag

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • Former Member
    Former Member over 12 years ago

    PROJECT CHALLANGE

     

         Live stream Video to a Mobile device

     

    I'm a Tech in the Broadcasting buisness, on locations the producers and Director likes to watch the feed that the camera is getting.  There are systems out but none that transmitt to a cell phone.  I was thinking signal out of the camera to a Rasberry PI, then it transmits it via bluetooth to a bluetooth phone or tablet.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
<>
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube