element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • About Us
  • 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
  • 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
Twist, Turn and Move Design Challenge with TE Robotics
  • Challenges & Projects
  • Design Challenges
  • Twist, Turn and Move Design Challenge with TE Robotics
  • More
  • Cancel
Twist, Turn and Move Design Challenge with TE Robotics
Blog Sammy Semaphore Torso Demo - (Blog 4)
  • Blog
  • Forum
  • Documents
  • Polls
  • Files
  • Leaderboard
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
  • Share
  • More
  • Cancel
Group Actions
  • Group RSS
  • More
  • Cancel
Engagement
  • Author Author: dougw
  • Date Created: 31 Aug 2022 4:29 AM Date Created
  • Views 2143 views
  • Likes 12 likes
  • Comments 13 comments
  • doug wong
  • tinted bezel
  • robots
  • te connectivity
  • Twist Turn and Move Robotics Design Challenge
Related
Recommended

Sammy Semaphore Torso Demo - (Blog 4)

dougw
dougw
31 Aug 2022

Intro

While waiting for components I've been busy designing some 3D printed parts and wiring up some of the connectors that I do have. The first section of this blog shows one of my favorite types of connector from TE Connectivity, actually the MTA series from their AMP brand. The last section shows the robot torso design and demonstrates its display.

MTA Connector Assembly

image

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

Sammy Semaphore Torso Design

Sammy was going to be blue, but orange is what I have available for my printer. This is the torso design:

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

That is the hard part of the design, so it is good that it is printed and functional.

Software

Here is the little brute force program to display "TORSO":

//Arduino UNO 8x8 NEO pixel display "TORSO" demo
//by Doug Wong 2022

#include <FastLED.h>
#define NLEDS 64
#define LEDpin 2

CRGB leds[NLEDS];

byte AL[26][8] = {
{129, 129, 129, 255, 129, 129, 66, 60},     //A0
{127, 129, 129, 129, 127, 129, 129, 127},   //B1
{124,  130, 1, 1, 1, 1, 130, 124},          //C2
{63, 65, 129, 129, 129, 129, 65, 63},       //D3
{255, 1, 1, 1, 63, 1, 1, 255},              //E4
{1, 1, 1, 1, 63, 1, 1, 255},                //F5
{124, 130, 129, 225, 1, 1, 130, 124},       //G6
{129, 129, 129, 129, 255, 129, 129, 129},   //H7
{28, 8, 8, 8, 8, 8, 8, 28},                 //I8
{30, 33, 33, 32, 32, 32, 32, 248},          //J9
{129, 65, 33, 17, 31, 33, 65, 129},         //K10
{255, 129, 1, 1, 1, 1, 1, 1},               //L11
{129, 129, 129, 129, 153, 165, 195, 129},   //M12
{129, 193, 161, 145, 145, 137, 133, 131},   //N13
{126, 129, 129, 129, 129, 129, 129, 126},   //O14
{1, 1, 1, 1, 127, 129, 129, 127},           //P15
{190, 65, 161, 129, 129, 129, 129, 126},    //Q16
{129, 65, 33, 127, 129, 129, 129, 127},     //R17
{126, 129, 128, 64, 62, 1, 129, 126},       //S18
{8, 8, 8, 8, 8, 8, 8, 127},                 //T19
{126, 129, 129, 129, 129, 129, 129, 129},   //U20
{24, 36, 36, 66, 66, 129, 129, 129},        //V21
{129, 195, 165, 153, 129, 129, 129, 129},   //W22
{129, 66, 36, 24, 24, 36, 66, 129},         //X23
{16, 16, 16, 16, 24, 36, 66, 129},          //Y24
{255, 2, 4, 8, 16, 32, 64, 255}             //Z25
};

int abc, rc, cc;

void setup() {
  FastLED.addLeds<WS2812B, LEDpin, GRB>(leds, NLEDS);
  FastLED.setBrightness(50);
}

void loop()
{
//  for (abc = 0; abc < 26; abc++)
//  {
  DisplayChar(19);
  delay(600);
  DisplayChar(14);
  delay(600);
  DisplayChar(17);
  delay(600);
  DisplayChar(18);
  delay(600);
  DisplayChar(14);
  delay(600);
  BlankDisplay();
  delay(1000);
}

void DisplayChar(int abc){
  for (rc = 0; rc < 8; rc++)
  {
    for (cc = 0; cc < 8; cc++)
    {
       if (bitRead(AL[abc][rc], cc) == 1)
       {
        leds[rc + cc * 8] = CRGB::Green;
       }
       else
       {
        leds[rc + cc * 8] = CRGB::Black;
       }
    }
  }
    FastLED.show();
}

void BlankDisplay()
{
    for (int ac = 0; ac < 64; ac++)
    {
      leds[ac] = CRGB::Black;
    }
    FastLED.show();
}

Discussion for Blog 4

The project is starting to come together, but there are still many pieces to arrive or resolve. At least the concept is starting to look real.

Relevant Links:

Twist, Turn and Move Design Challenge with TE Robotics
Sammy Semaphore - blog 1
Connector Tester - blog 2
NEO Pixel Display - blog 3
Sammy Semaphore Torso Demo - Blog 4
I Am Sam I Am - Blog 5
TE Connectivity Connector Tester Blog 6
Sammy Semaphore Fully Functional Blog 7

  • Sign in to reply
  • dougw
    dougw over 3 years ago in reply to dang74

    Orange is the new blue..Slight smile

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • More
    • Cancel
  • DAB
    DAB over 3 years ago

    Nice build Douglas.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • More
    • Cancel
  • dang74
    dang74 over 3 years ago

    Things are progressing nicely.  And Sammy looks good in orange.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • More
    • Cancel
  • cstanton
    cstanton over 3 years ago in reply to javagoza

    Thanks, I've also raised that with the developers.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • More
    • Cancel
  • javagoza
    javagoza over 3 years ago in reply to cstanton

    Since the change to Verint was made, whenever I have inserted a product link, I search for the SKU on both websites, the first with the product name and in the second website always using the Manufacturer Part Number. I think that is the fastest way to do it.

    Searching for related element14 community docs or blogs from the product pages on the newark and farnell websites has also been missed. There is the search form but it does not return data anymore,

    image

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • More
    • 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