Jump to content
43oh

Fmilburn

Members
  • Content Count

    618
  • Joined

  • Last visited

  • Days Won

    81

Fmilburn last won the day on December 2 2019

Fmilburn had the most liked content!

About Fmilburn

  • Rank
    Level 3

Profile Information

  • Gender
    Male
  • Location
    Seattle
  • Github
    https://github.com/fmilburn3/

Recent Profile Visitors

7,001 profile views
  1. There are several posts on 43oh using IR, for example: The post above describes hardware I used and links to others. If you use Energia, look for Arduino projects and tutorials as most should work. For example, look on the Adafruit site which also sell hardware.
  2. I suggest looking in the language reference and getting familiar with it, e.g. http://energia.nu/reference/en/language/functions/communication/serial/begin/ You have not specified the board you are using and some do not offer multiple serial.
  3. Hmmm... that code looks familiar. Energia implements an interrupt with change, probably by the method that jsolarski suggests above. I don’t use Energia much anymore but it is open source so you can have a look at that if you are interested.
  4. Try replacing the call to software serial with Serial1 or other hardware serial.
  5. Hi @mph It is good to see someone new contributing code. Nicely written and commented.
  6. I am not sure if Energia supports it on the TM4C123 but try using hardware serial - eg Serial1 or Serial2 instead of software serial http://energia.nu/reference/serial/
  7. The TI store has 10% off selected LaunchPad and tools with free shipping for the next week. http://www.ti.com/store/featured/junemidyear2018.html?HQS=ecm-tistore-promo-junemidyear18-bhp-lp-null-wwe
  8. TI has listed a solution here: http://www.ti.com/tool/MSP-EXP430F5438 http://www.ti.com/tool/cc256xmspbtblesw The CC2650 seems to fit your requirements and you can get additional help on e2e if needed.
  9. My memory must be faulty. I had a quick look at the Adafruit code and don't believe it will work without a fair amount of modification. They are using direct register reads in some cases which is not difficult to fix but they also seem to be blocking and counting loops to determine time which is not good practice. I mostly used the DHT22 but do remember getting the DHT11 working at one point. Most of the libraries seem to handle both. Unfortunately I did not put my code in github or otherwise document it so can't give much more guidance.
  10. In the distant past I have used the Adafruit library with the DHT11 and don't remember having a problem. I normally use V17 of Energia with the G2553. Make sure you get the pins right and list both the pins used and a link to the library when asking for help. Arduino code that makes hardware specific calls will not work without porting whether to a MSP430, Teensy, ESP, etc.
  11. @Balwinder You have double posted your question which is to be avoided. Did you try the modified Energia version I posted above? There are also TI CCS examples and the driverlib I posted above.
  12. Hi @Amanchaturvedi You don't say whether you are using CCS or Energia.... I have not used the CC3200 in quite some time but the Pxx numbers on the silk screen which are barely legible refer to the package pin numbers - refer to table 3.1 of the datasheet: http://www.ti.com/lit/ds/symlink/cc3200.pdf According to the datasheet there are two UARTs. You can multiplex them with CCS. In Energia it is possible with some LaunchPads to have Serial1 but I don't know if this is possible with the CC3200. Have a look at the pin map and try - probably pin 9 is TX(1) using the standard
  13. There are quite a few threads and links to SD libraries in the forum. Do a search for “energia SD” or something similar.
×
×
  • Create New...