Jump to content
43oh

Search the Community

Showing results for tags 'i2c broken'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • News
    • Announcements
    • Suggestions
    • New users say Hi!
  • Spotlight!
    • Sponsor Spotlight
    • Sponsor Giveaways
  • Energia
    • Energia - MSP
    • Energia - TivaC/CC3XXX
    • Energia - C2000
    • Energia Libraries
  • MSP Technical Forums
    • General
    • Compilers and IDEs
    • Development Kits
    • Programmers and Debuggers
    • Code vault
    • Projects
    • Booster Packs
    • Energia
  • Tiva-C, Hercules, CCXXXX ARM Technical Forums
    • General
    • SensorTag
    • Tiva-C, Hercules, CC3XXX Launchpad Booster Packs
    • Code Vault
    • Projects
    • Compilers and IDEs
    • Development Kits and Custom Boards
  • Beagle ARM Cortex A8 Technical Forums
    • General
    • Code Snippets and Scripts
    • Cases, Capes and Plugin Boards
    • Projects
  • General Electronics Forum
    • General Electronics
    • Other Microcontrollers
  • Connect
    • Embedded Systems/Test Equipment Deals
    • Buy, Trade and Sell
    • The 43oh Store
    • Community Projects
    • Fireside Chat
  • C2000 Technical Forums
    • General
    • Development Kits
    • Code Vault
    • Projects
    • BoosterPacks

Calendars

There are no results to display.


Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Website URL


Location


Interests


Sparkfun


Github

Found 1 result

  1. Hello, I'v been trying to hook up a MPR121 capacitive touch sensor to the MSP430G2553 via I2C. I have encountered a problem. This is the code for a transmission: Wire.beginTransmission(0x5C); //0b1011100 Wire.write(0x5D); //0b01011101 Wire.endTransmission(false); Wire.requestFrom(0x5C,1, true); This is how it should look ( in my opinion ): START 1011100 0 0 01011101 0 START 1011100 1 0 SENSORDATA 1 STOP However this is how it looks in reality: START 1011100 0 0 01011110 0 START 1011100 0 0 START 1011100 1 0 00000000 1 STOP Why are there 3 START's instead of 2? Wha
×
×
  • Create New...