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
BeagleBoard
  • Products
  • Dev Tools
  • Single-Board Computers
  • BeagleBoard
  • More
  • Cancel
BeagleBoard
Forum pocketbeagle i2c lcd, 16x2, hd44780,PCF8574
  • Blog
  • Forum
  • Documents
  • Quiz
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join BeagleBoard to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • State Not Answered
  • Replies 4 replies
  • Subscribers 101 subscribers
  • Views 1336 views
  • Users 0 members are here
Related

pocketbeagle i2c lcd, 16x2, hd44780,PCF8574

chrischristian14
chrischristian14 over 5 years ago

Hi All, I am trying the below code with hd44780 display an pcf8574. I can control the backlight so i2c is working, but all the below code does, flickers the backlight and comes back to a blank screen.

Can anyone confirm if the commands are correct ?. Thanks

/* ----------------------------------------------------------------------- *
 * Title:         pcf8574-lcd-demo                                         *
 * Description:   C-code for PCF8574T backpack controlling LCD through I2C *
 *                Tested on Raspberry Pi 3                                 *
 *                20180203 frank4dd                                        *
 *                                                                         *
 * Prerequisites: apt-get libi2c-dev i2c-tools                             *
 * Compilation:   gcc pcf8574-lcd-demo.c -o pcf8574-lcd-demo               *
 *------------------------------------------------------------------------ * 
 * PCF8574T backpack module uses 4-bit mode, LCD pins D0-D3 are not used.  *
 * backpack module wiring:                                                 *
 *                                                                         *
 *  PCF8574T     LCD                                                       *
 *  ========     ======                                                    *
 *     P0        RS                                                        *
 *     P1        RW                                                        *
 *     P2        Enable                                                    *
 *     P3        Led Backlight                                             *
 *     P4        D4                                                        *
 *     P5        D5                                                        *
 *     P6        D6                                                        *
 *     P7        D7                                                        *
 *                                                                         *
 * I2C-byte: D7 D6 D5 D4 BL EN RW RS                                       *
 * ----------------------------------------------------------------------- */
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <linux/i2c-dev.h>
#include <fcntl.h>
#include <sys/ioctl.h>




#define I2C_BUS        "/dev/i2c-2" // I2C bus device on a Raspberry Pi 3
#define I2C_ADDR       0x27         // I2C slave address for the LCD module
#define BINARY_FORMAT  " %c  %c  %c  %c  %c  %c  %c  %c\n"
#define BYTE_TO_BINARY(byte) \
  (byte & 0x80 ? '1' : '0'), \
  (byte & 0x40 ? '1' : '0'), \
  (byte & 0x20 ? '1' : '0'), \
  (byte & 0x10 ? '1' : '0'), \
  (byte & 0x08 ? '1' : '0'), \
  (byte & 0x04 ? '1' : '0'), \
  (byte & 0x02 ? '1' : '0'), \
  (byte & 0x01 ? '1' : '0') 
  
int lcd_backlight;
int debug;
char address; 
int i2cFile;


void i2c_start() {
   if((i2cFile = open(I2C_BUS, O_RDWR)) < 0) {
      printf("Error failed to open I2C bus [%s].\n", I2C_BUS);
      exit(-1);
   }
   // set the I2C slave address for all subsequent I2C device transfers
   if (ioctl(i2cFile, I2C_SLAVE, I2C_ADDR) < 0) {
      printf("Error failed to set I2C address [%s].\n", I2C_ADDR);
      exit(-1);
   }
}


void i2c_stop() { close(i2cFile); }


void i2c_send_byte(unsigned char data) {
   unsigned char byte[1];
   byte[0] = data;
   if(debug) printf(BINARY_FORMAT, BYTE_TO_BINARY(byte[0]));
   write(i2cFile, byte, sizeof(byte)); 
   /* -------------------------------------------------------------------- *
    * Below wait creates 1msec delay, needed by display to catch commands  *
    * -------------------------------------------------------------------- */
   usleep(000);
}


void main() { 
   i2c_start(); 
   debug=1;


   /* -------------------------------------------------------------------- *
    * Initialize the display, using the 4-bit mode initialization sequence *
    * -------------------------------------------------------------------- */
   if(debug) printf("Init Start:\n");
   if(debug) printf("D7 D6 D5 D4 BL EN RW RS\n");


   usleep(30000);             // wait 15msec
   i2c_send_byte(0b00110100); // D7=0, D6=0, D5=1, D4=1, RS,RW=0 EN=1
   i2c_send_byte(0b00110000); // D7=0, D6=0, D5=1, D4=1, RS,RW=0 EN=0


   usleep(8200);              // wait 4.1msec
   i2c_send_byte(0b00110100); // 
   i2c_send_byte(0b00110000); // same
   usleep(200);               // wait 100usec
   i2c_send_byte(0b00110100); //
   i2c_send_byte(0b00110000); // 8-bit mode init complete
   usleep(8200);              // wait 4.1msec
   i2c_send_byte(0b00100100); //
   i2c_send_byte(0b00100000); // switched now to 4-bit mode




   /* -------------------------------------------------------------------- *
    * 4-bit mode initialization complete. Now configuring the function set *
    * -------------------------------------------------------------------- */
   usleep(80);                // wait 40usec
   i2c_send_byte(0b00100100); //
   i2c_send_byte(0b00100000); // keep 4-bit mode
   i2c_send_byte(0b10000100); //
   i2c_send_byte(0b10000000); // D3=2lines, D2=char5x8


   /* -------------------------------------------------------------------- *
    * Next turn display off                                                *
    * -------------------------------------------------------------------- */
   usleep(80);                // wait 40usec
   i2c_send_byte(0b00000100); //
   i2c_send_byte(0b00000000); // D7-D4=0
   i2c_send_byte(0b10000100); //
   i2c_send_byte(0b10000000); // D3=1 D2=display_off, D1=cursor_off, D0=cursor_blink


   /* -------------------------------------------------------------------- *
    * Display clear, cursor home                                           *
    * -------------------------------------------------------------------- */
   usleep(80);                // wait 40usec
   i2c_send_byte(0b00000100); //
   i2c_send_byte(0b00000000); // D7-D4=0
   i2c_send_byte(0b00010100); //
   i2c_send_byte(0b00010000); // D0=display_clear


   /* -------------------------------------------------------------------- *
    * Set cursor direction                                                 *
    * -------------------------------------------------------------------- */
   usleep(80);                // wait 40usec
   i2c_send_byte(0b00000100); //
   i2c_send_byte(0b00000000); // D7-D4=0
   i2c_send_byte(0b01100100); //
   i2c_send_byte(0b01100000); // print left to right


   /* -------------------------------------------------------------------- *
    * Turn on the display                                                  *
    * -------------------------------------------------------------------- */
   usleep(80);                // wait 40usec
   i2c_send_byte(0b00001100); //
   i2c_send_byte(0b00001000); // D7-D4=0
   i2c_send_byte(0b11101100); //
   i2c_send_byte(0b11101000); // D3=1 D2=display_on, D1=cursor_on, D0=cursor_blink


   if(debug) printf("Init End.\n");
   sleep(1);


   if(debug) printf("Writing HELLO to display\n");
   if(debug) printf("D7 D6 D5 D4 BL EN RW RS\n");
#if 1
   /* -------------------------------------------------------------------- *
    * Start writing 'H' 'E' 'L' 'L' 'O' chars to the display, with BL=on.  *
    * -------------------------------------------------------------------- */
   i2c_send_byte(0b01001101); //
   i2c_send_byte(0b01001001); // send 0100=4
   i2c_send_byte(0b10001101); //
   i2c_send_byte(0b10001001); // send 1000=8 = 0x48 ='H'




   i2c_send_byte(0b01001101); //
   i2c_send_byte(0b01001001); // send 0100=4
   i2c_send_byte(0b01011101); // 
   i2c_send_byte(0b01011001); // send 0101=1 = 0x41 ='E'


   i2c_send_byte(0b01001101); //
   i2c_send_byte(0b01001001); // send 0100=4
   i2c_send_byte(0b11001101); //
   i2c_send_byte(0b11001001); // send 1100=12 = 0x4D ='L'


   i2c_send_byte(0b01001101); //
   i2c_send_byte(0b01001001); // send 0100=4
   i2c_send_byte(0b11001101); //
   i2c_send_byte(0b11001001); // send 1100=12 = 0x4D ='L'


   i2c_send_byte(0b01001101); //
   i2c_send_byte(0b01001001); // send 0100=4
   i2c_send_byte(0b11111101); //
   i2c_send_byte(0b11111001); // send 1111=15 = 0x4F ='O'
#endif


   if(debug) printf("Finished writing to display.\n");
   i2c_stop(); 
}

  • Sign in to reply
  • Cancel
  • chrischristian14
    0 chrischristian14 over 5 years ago

    I solved it, the problem was that the initialization is part of the main function and there is a problem with delays, so when it is run the first time, it doesn't work, when I ran it the second time, I was also running the initialization so that was creating the problem, after separating the initialization and the increasing all delays by 10ms, everything is working. 

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • shabaz
    0 shabaz over 5 years ago

    Hi Chris,

     

    I appreciate that's code you've not written according to the comments section of it, so you may have done it differently, but that code can be simplified:

    The I2C commands are in pairs, with the only delta being that the second I2C command in the pair has the third bit from the right (bit 2) set to zero, to pulse a pin on the display board ultimately.

    So, a function could be written like this (I've not tested it, but hopefully it should work):

     

    void lcd_instruction(unsigned char data)
    {
        i2c_send_command(data);
        i2c_send_command (data & 0xfb); // clear bit 2, binary 1111 1011 is 0xfb
    }

     

    Now your code can almost halve by calling lcd_instruction instead of i2c_send_command so many times. It's not about saving bytes, but about reducing the amount of potential errors (expect a bug in every 10 lines of code perhaps - kind of outdated rule of thumb) and improving readability.

    Also, another general rule is that #defines can be used to replace constants.

     

    Regarding character printing, it will get tiresome to print individual characters like this, and there are techniques to simplify that too (and there's a helper function in a C library for that - but that could be for another day; I'm sure there will be examples of that in other HD44780 libraries, but at least the two modifications mentioned above will reduce the code.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • chrischristian14
    0 chrischristian14 over 5 years ago

    Thank you Shabaz. I have modified the code a bit, I have left those binary codes in the initialization as is, because, I find it helpful to simply cross check with datasheet of HD44780. I am leaving a modified version the code here, if anyone ever wants to use it.

    /* ----------------------------------------------------------------------- *
     * Title:         pcf8574-lcd-demo                                         *
     * Description:   C-code for PCF8574T backpack controlling LCD through I2C *
     *                Tested on Raspberry Pi 3                                 *
     *                20180203 frank4dd                                        *
     *                                                                         *
     * Prerequisites: apt-get libi2c-dev i2c-tools                             *
     * Compilation:   gcc pcf8574-lcd-demo.c -o pcf8574-lcd-demo               *
     *------------------------------------------------------------------------ * 
     * PCF8574T backpack module uses 4-bit mode, LCD pins D0-D3 are not used.  *
     * backpack module wiring:                                                 *
     *                                                                         *
     *  PCF8574T     LCD                                                       *
     *  ========     ======                                                    *
     *     P0        RS                                                        *
     *     P1        RW                                                        *
     *     P2        Enable                                                    *
     *     P3        Led Backlight                                             *
     *     P4        D4                                                        *
     *     P5        D5                                                        *
     *     P6        D6                                                        *
     *     P7        D7                                                        *
     *                                                                         *
     * I2C-byte: D7 D6 D5 D4 BL EN RW RS                                       *
     * ----------------------------------------------------------------------- */
    #include <stdio.h>
    #include <stdlib.h>
    #include <unistd.h>
    #include <linux/i2c-dev.h>
    #include <fcntl.h>
    #include <sys/ioctl.h>
    
    
    
    
    #define I2C_BUS        "/dev/i2c-2" // I2C bus device on a Raspberry Pi 3
    #define I2C_ADDR       0x27         // I2C slave address for the LCD module
    #define NUMBER_OF_CHAR_PER_LINE 16
    #define NUMBER_OF_LINE 2
    int lcd_backlight;
    int debug;
    char address;
    char out[4];
    int i2cFile;
    int cursor_pos;
    
    
    
    
    
    
    
    
    void i2c_start() {
       if((i2cFile = open(I2C_BUS, O_RDWR)) < 0) {
          printf("Error failed to open I2C bus [%s].\n", I2C_BUS);
          exit(-1);
       }
       // set the I2C slave address for all subsequent I2C device transfers
       if (ioctl(i2cFile, I2C_SLAVE, I2C_ADDR) < 0) {
          printf("Error failed to set I2C address [%s].\n", I2C_ADDR);
          exit(-1);
       }
    }
    
    
    void i2c_stop() { close(i2cFile); }
    
    
    
    
    
    
    
    
    
    
    char convert_to_nibbels(char foo) { 
    
    char n1,n2,ln1,ln2,mask1,mask2,out1,out2,out3,out4;
    
    
    ln1 = 0b11111101;
    ln2 = 0b11111001;
    
    
    mask1 = 0b11110000;
    mask2 = 0b00001111;
    
    
    n1 = foo & mask1;
    n1 = n1 | mask2;
    //printf("n1 is : 0x%x \r\n",n1);
    
    
    n2 = foo & mask2;
    n2 = n2<<4;      
    n2 = n2 | mask2;
    //printf("n2 is : 0x%x \r\n",n2);
    
    
    
    
    
    
    out1 = n1 & ln1 ;
    //printf("out1 is : 0x%x \r\n",out1);
    out2 = n1 & ln2;
    //printf("out2 is : 0x%x \r\n",out2);
    
    
    out3 = n2 & ln1 ;
    //printf("out3 is : 0x%x \r\n",out3);
    out4 = n2 & ln2 ;
    //printf("out4 is : 0x%x \r\n",out4);
    out[0] = out1;
    out[1] = out2;
    out[2] = out3;
    out[3] = out4;
    
    }
    char convert_cmd_to_nibbels(char foo) { 
    
    char n1,n2,ln1,ln2,mask1,mask2,out1,out2,out3,out4;
    
    
    ln1 = 0b11111100;
    ln2 = 0b11111000;
    
    
    mask1 = 0b11110000;
    mask2 = 0b00001111;
    
    
    n1 = foo & mask1;
    n1 = n1 | mask2;
    //printf("n1 is : 0x%x \r\n",n1);
    
    
    n2 = foo & mask2;
    n2 = n2<<4;      
    n2 = n2 | mask2;
    //printf("n2 is : 0x%x \r\n",n2);
    
    
    
    
    
    
    out1 = n1 & ln1 ;
    //printf("out1 is : 0x%x \r\n",out1);
    out2 = n1 & ln2;
    //printf("out2 is : 0x%x \r\n",out2);
    
    
    out3 = n2 & ln1 ;
    //printf("out3 is : 0x%x \r\n",out3);
    out4 = n2 & ln2 ;
    //printf("out4 is : 0x%x \r\n",out4);
    out[0] = out1;
    out[1] = out2;
    out[2] = out3;
    out[3] = out4;
    
    }
    
    
    
    
    
    
    
    
    void i2c_send_byte(unsigned char data) {
       unsigned char byte[1];
       byte[0] = data;
       write(i2cFile, byte, sizeof(byte)); 
       /* -------------------------------------------------------------------- *
        * Below wait creates 1msec delay, needed by display to catch commands  *
        * -------------------------------------------------------------------- */
       usleep(000);
    }
    
    
    
    
    void clear_display()
    {
       /* -------------------------------------------------------------------- *
        * Display clear, cursor home                                           *
        * -------------------------------------------------------------------- */
       usleep(40);                // wait 40usec
       i2c_send_byte(0b00000100); //
       i2c_send_byte(0b00000000); // D7-D4=0
       i2c_send_byte(0b00010100); //
       i2c_send_byte(0b00010000); // D0=display_clear
    
    
       /* -------------------------------------------------------------------- *
        * Turn on the display                                                  *
        * -------------------------------------------------------------------- */
       usleep(40);                // wait 40usec
       i2c_send_byte(0b00001100); //
       i2c_send_byte(0b00001000); // D7-D4=0
       i2c_send_byte(0b11101100); //
       i2c_send_byte(0b11101000); // D3=1 D2=display_on, D1=cursor_on, D0=cursor_blink
       cursor_pos =1 ;
    }
    
    
    
    
    void send_cmd_char_to_lcd(char foo)
    {
    int i;
    convert_cmd_to_nibbels(foo);
    for(i=0;i<4;i++)
    {
       i2c_send_byte(out[i]);
    }
    }
    
    
    void go_to(int line, char position)
    {
    if(line==1)
    {
    cursor_pos = position;
    position = 0x80+position;
    }
    else if(line==2)
    {
    cursor_pos = position+40;
    position = 0xC0+position;
    }
    send_cmd_char_to_lcd(position);
    }
    
    
    void send_char_to_lcd(char foo)
    {
    int i;
    convert_to_nibbels(foo);
    for(i=0;i<4;i++)
    {
       i2c_send_byte(out[i]);
    }
       cursor_pos++;
    }
    
    
    void send_string_to_lcd(int argc,char *str[])
    {
    
    
    int i, counter;
    for(counter=1;counter<argc;counter++)
    {
    for(i=0;str[counter][i]!=0x00;i++)
    { 
       send_char_to_lcd(str[counter][i]);
       if(cursor_pos==(NUMBER_OF_CHAR_PER_LINE+1))
    {
       go_to(2,0);  
    }
    }
    }
    }
    
    
    void send_simple_string_to_lcd(char *str)
    {
    
    
    int i;
    for(i=0;(str[i]!=0x00);i++)
    {
        send_char_to_lcd(str[i]);
    }
    
    
    }
    
    
    
    
    void main(int argc, char* argv[]) { 
       i2c_start(); 
       debug=1;
       cursor_pos =1 ;
    
    
    
       /* -------------------------------------------------------------------- *
        * Initialize the display, using the 4-bit mode initialization sequence *
        * -------------------------------------------------------------------- */
      // if(debug) printf("Init Start:\n");
      // if(debug) printf("D7 D6 D5 D4 BL EN RW RS\n");
    
    
    
    
    if(argv[1][0] =='R')
    {
    
    
       sleep(0.4);             // wait 40msec
       i2c_send_byte(0b00110100); // D7=0, D6=0, D5=1, D4=1, RS,RW=0 EN=1
       i2c_send_byte(0b00110000); // D7=0, D6=0, D5=1, D4=1, RS,RW=0 EN=0
    
    
       sleep(0.1);              // wait 10msec
       i2c_send_byte(0b00110100); // 
       i2c_send_byte(0b00110000); // same
       sleep(0.1);               // wait 10msec
       i2c_send_byte(0b00110100); //
       i2c_send_byte(0b00110000); // 8-bit mode init complete
       sleep(0.1);              // wait 10msec
       i2c_send_byte(0b00100100); //
       i2c_send_byte(0b00100000); // switched now to 4-bit mode
    
    
    
    
       /* -------------------------------------------------------------------- *
        * 4-bit mode initialization complete. Now configuring the function set *
        * -------------------------------------------------------------------- */
       usleep(100);                // wait 100usec
       i2c_send_byte(0b00100100); //
       i2c_send_byte(0b00100000); // keep 4-bit mode
       i2c_send_byte(0b10000100); //
       i2c_send_byte(0b10000000); // D3=2lines, D2=char5x8
    
    
       /* -------------------------------------------------------------------- *
        * Next turn display off                                                *
        * -------------------------------------------------------------------- */
       usleep(100);                // wait 100usec
       i2c_send_byte(0b00000100); //
       i2c_send_byte(0b00000000); // D7-D4=0
       i2c_send_byte(0b10000100); //
       i2c_send_byte(0b10000000); // D3=1 D2=display_off, D1=cursor_off, D0=cursor_blink
    
    
       /* -------------------------------------------------------------------- *
        * Display clear, cursor home                                           *
        * -------------------------------------------------------------------- */
       usleep(100);                // wait 100usec
       i2c_send_byte(0b00000100); //
       i2c_send_byte(0b00000000); // D7-D4=0
       i2c_send_byte(0b00010100); //
       i2c_send_byte(0b00010000); // D0=display_clear
    
    
       /* -------------------------------------------------------------------- *
        * Set cursor direction                                                 *
        * -------------------------------------------------------------------- */
       usleep(100);                // wait 100usec
       i2c_send_byte(0b00000100); //
       i2c_send_byte(0b00000000); // D7-D4=0
       i2c_send_byte(0b01100100); //
       i2c_send_byte(0b01100000); // print left to right
    
    
       /* -------------------------------------------------------------------- *
        * Turn on the display                                                  *
        * -------------------------------------------------------------------- */
       usleep(100);                // wait 100usec
       i2c_send_byte(0b00001100); //
       i2c_send_byte(0b00001000); // D7-D4=0
       i2c_send_byte(0b11101100); //
       i2c_send_byte(0b11101000); // D3=1 D2=display_on, D1=cursor_on, D0=cursor_blink
    
    
       sleep(1);
    
    
    }
    else if (argv[1][0] == 'c')
    {
    clear_display();
    }
    else
    {
        //  send_string_to_lcd(argc,argv);
       //   go_to(2,0);
       //   send_cmd_char_to_lcd(0x0C); // cursor off 
    send_simple_string_to_lcd("SET P : 300");
    go_to(2,0);
    send_simple_string_to_lcd("CURRENT P : ");
    
    
    }
    
    
       i2c_stop(); 
    }

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • govind.govind
    0 govind.govind over 4 years ago in reply to chrischristian14

    Hi chris,

     

    Can you explain how convert into nibbles function works?

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