Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. A post from my Beagle Bone Black

A post from my Beagle Bone Black

Scheduled Pinned Locked Moved The Lounge
pythoncomlinuxquestionlearning
26 Posts 7 Posters 2 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • Mike HankeyM Mike Hankey

    DaveX86 wrote:

    ...work keeps interfering though...like right now :(

    I can understand that. There is a lot to learn and for me it took quite a while to learn as much as I have but I love working with them. Since you're getting into motors I'm going to add a shameless plug here; Motor Primer and the L293D Quad Half-H Driver[^] Good luck it's a fascinating field!

    VS2010/Atmel Studio 6.1 ToDo Manager Extension Relax...We're all crazy it's not a competition!

    D Offline
    D Offline
    DaveX86
    wrote on last edited by
    #8

    Thanks!...I look forward to studying your article when my brain is a little less fried :) I just bought a bunch of L293D chips, also a couple of those AdaFruit Arduino shields based on it...haven't had much luck with it yet but it was mostly power supply issues, I think...got a nice desktop power supply for Christmas :)

    Mike HankeyM 1 Reply Last reply
    0
    • D DaveX86

      Thanks!...I look forward to studying your article when my brain is a little less fried :) I just bought a bunch of L293D chips, also a couple of those AdaFruit Arduino shields based on it...haven't had much luck with it yet but it was mostly power supply issues, I think...got a nice desktop power supply for Christmas :)

      Mike HankeyM Offline
      Mike HankeyM Offline
      Mike Hankey
      wrote on last edited by
      #9

      DaveX86 wrote:

      AdaFruit Arduino shields

      Those motor shields are pretty nice I bought one a couple of years ago and have used it a lot. Want to make a board using same scheme using 2 L298N chips for more power. I've got some big steppers I took out of a huge printer and I made a board with a single L298N on it but it will only drive one motor. In addition I may put a ATTiny on there and use SPI for communications to cut down on the number of pins used to drive it. Love to tinker.

      VS2010/Atmel Studio 6.1 ToDo Manager Extension Relax...We're all crazy it's not a competition!

      D 1 Reply Last reply
      0
      • Mike HankeyM Mike Hankey

        DaveX86 wrote:

        AdaFruit Arduino shields

        Those motor shields are pretty nice I bought one a couple of years ago and have used it a lot. Want to make a board using same scheme using 2 L298N chips for more power. I've got some big steppers I took out of a huge printer and I made a board with a single L298N on it but it will only drive one motor. In addition I may put a ATTiny on there and use SPI for communications to cut down on the number of pins used to drive it. Love to tinker.

        VS2010/Atmel Studio 6.1 ToDo Manager Extension Relax...We're all crazy it's not a competition!

        D Offline
        D Offline
        DaveX86
        wrote on last edited by
        #10

        Yeah, SPI and I2C communications are also on my 'ToDo' list :) ...so much to tinker with, it's hard to know which way to turn...

        Mike HankeyM 1 Reply Last reply
        0
        • D DaveX86

          Yeah, SPI and I2C communications are also on my 'ToDo' list :) ...so much to tinker with, it's hard to know which way to turn...

          Mike HankeyM Offline
          Mike HankeyM Offline
          Mike Hankey
          wrote on last edited by
          #11

          I've dabbled a bit with I2C and want to do a lot more with it but SPI I got down to a science. Once you get the hang of it SPI is very easy and is used in a lot of places.

          VS2010/Atmel Studio 6.1 ToDo Manager Extension Relax...We're all crazy it's not a competition!

          D 1 Reply Last reply
          0
          • Mike HankeyM Mike Hankey

            I've dabbled a bit with I2C and want to do a lot more with it but SPI I got down to a science. Once you get the hang of it SPI is very easy and is used in a lot of places.

            VS2010/Atmel Studio 6.1 ToDo Manager Extension Relax...We're all crazy it's not a competition!

            D Offline
            D Offline
            DaveX86
            wrote on last edited by
            #12

            I notice on your site you talk quite a bit about Atmel Studio...I downloaded it and installed it but never really got around to using it...seemed kinda complicated. I usually write sketches for Arduino with the Visual Micro add on for Visual Studio...do you think Atmel Studio is better?

            Mike HankeyM 1 Reply Last reply
            0
            • D DaveX86

              I notice on your site you talk quite a bit about Atmel Studio...I downloaded it and installed it but never really got around to using it...seemed kinda complicated. I usually write sketches for Arduino with the Visual Micro add on for Visual Studio...do you think Atmel Studio is better?

              Mike HankeyM Offline
              Mike HankeyM Offline
              Mike Hankey
              wrote on last edited by
              #13

              Think of Atmel Studio as VC6 with a VS2010 IDE. It is built using an Visual Studio Isolated Shell so you should be used to the interface if you do any programming in Visual Studio. I never could get used to the Arduino IDE, I never took the time to learn it. IMHO the Arduino IDE is for more like Engineers and Hobbyists with little programming experience. You just plug the modules in that you need and go, it's pretty simple but if I were going to do a real project I wouldn't use it. Atmel Studio allows you to create reusable libraries, organize projects and hook into source control which is a biggy in my book. If you're going to get serious with embedded systems I would recommend taking the time to learn it, but if you just want to experiment it would probably be better to use the Arduino IDE. The plus side to Arduino IDE is that a lot of people have wrote module for it for just about everything and it is documented very well. That's one of the problems I have every time I get a new device I want to hook up to it I have to either convert Arduino code or start from scratch. I usually just start from scratch.

              VS2010/Atmel Studio 6.1 ToDo Manager Extension Relax...We're all crazy it's not a competition!

              R D L 3 Replies Last reply
              0
              • Mike HankeyM Mike Hankey

                Think of Atmel Studio as VC6 with a VS2010 IDE. It is built using an Visual Studio Isolated Shell so you should be used to the interface if you do any programming in Visual Studio. I never could get used to the Arduino IDE, I never took the time to learn it. IMHO the Arduino IDE is for more like Engineers and Hobbyists with little programming experience. You just plug the modules in that you need and go, it's pretty simple but if I were going to do a real project I wouldn't use it. Atmel Studio allows you to create reusable libraries, organize projects and hook into source control which is a biggy in my book. If you're going to get serious with embedded systems I would recommend taking the time to learn it, but if you just want to experiment it would probably be better to use the Arduino IDE. The plus side to Arduino IDE is that a lot of people have wrote module for it for just about everything and it is documented very well. That's one of the problems I have every time I get a new device I want to hook up to it I have to either convert Arduino code or start from scratch. I usually just start from scratch.

                VS2010/Atmel Studio 6.1 ToDo Manager Extension Relax...We're all crazy it's not a competition!

                R Offline
                R Offline
                Ron Beyer
                wrote on last edited by
                #14

                Enjoy :)[^] I dislike the Arduino IDE myself, but there are ways to program the Arduino using Visual Studo or Atmel Studio, like the plugin above.

                Mike HankeyM 1 Reply Last reply
                0
                • Mike HankeyM Mike Hankey

                  Think of Atmel Studio as VC6 with a VS2010 IDE. It is built using an Visual Studio Isolated Shell so you should be used to the interface if you do any programming in Visual Studio. I never could get used to the Arduino IDE, I never took the time to learn it. IMHO the Arduino IDE is for more like Engineers and Hobbyists with little programming experience. You just plug the modules in that you need and go, it's pretty simple but if I were going to do a real project I wouldn't use it. Atmel Studio allows you to create reusable libraries, organize projects and hook into source control which is a biggy in my book. If you're going to get serious with embedded systems I would recommend taking the time to learn it, but if you just want to experiment it would probably be better to use the Arduino IDE. The plus side to Arduino IDE is that a lot of people have wrote module for it for just about everything and it is documented very well. That's one of the problems I have every time I get a new device I want to hook up to it I have to either convert Arduino code or start from scratch. I usually just start from scratch.

                  VS2010/Atmel Studio 6.1 ToDo Manager Extension Relax...We're all crazy it's not a competition!

                  D Offline
                  D Offline
                  DaveX86
                  wrote on last edited by
                  #15

                  It's mostly just tinkering for me for now...I have lots of learning curves to deal with for work so I just want something that's easy to deal with...with the Visual Micro plugin, at least I can work in my Visual Studio...the Arduino IDE is pretty crude...need it though if you're going to burn a bootloader or program a 'tiny.

                  Mike HankeyM 1 Reply Last reply
                  0
                  • R Ron Beyer

                    Enjoy :)[^] I dislike the Arduino IDE myself, but there are ways to program the Arduino using Visual Studo or Atmel Studio, like the plugin above.

                    Mike HankeyM Offline
                    Mike HankeyM Offline
                    Mike Hankey
                    wrote on last edited by
                    #16

                    It's a very popular addin/extension but I use the bare IDE and write mostly C++ code, occasionally C and rarely Asm code.

                    VS2010/Atmel Studio 6.1 ToDo Manager Extension Relax...We're all crazy it's not a competition!

                    R 1 Reply Last reply
                    0
                    • Mike HankeyM Mike Hankey

                      It's a very popular addin/extension but I use the bare IDE and write mostly C++ code, occasionally C and rarely Asm code.

                      VS2010/Atmel Studio 6.1 ToDo Manager Extension Relax...We're all crazy it's not a competition!

                      R Offline
                      R Offline
                      Ron Beyer
                      wrote on last edited by
                      #17

                      At least the plugin makes Arduino bearable, the default IDE is pretty annoying.

                      Mike HankeyM 1 Reply Last reply
                      0
                      • D DaveX86

                        It's mostly just tinkering for me for now...I have lots of learning curves to deal with for work so I just want something that's easy to deal with...with the Visual Micro plugin, at least I can work in my Visual Studio...the Arduino IDE is pretty crude...need it though if you're going to burn a bootloader or program a 'tiny.

                        Mike HankeyM Offline
                        Mike HankeyM Offline
                        Mike Hankey
                        wrote on last edited by
                        #18

                        Just stick with what you're using then, it's simple and you already know it. When you are ready you can always switch! I took the time to learn Atmel Studio because I've been using VS since it's Beta many years ago so was familiar with it. Also the last job I had we used VC++6.0 so was familiar with that aspect. It just made sense for me. Whatever the choice the object is to enjoy it and create amazing things. :)

                        VS2010/Atmel Studio 6.1 ToDo Manager Extension Relax...We're all crazy it's not a competition!

                        1 Reply Last reply
                        0
                        • R Ron Beyer

                          At least the plugin makes Arduino bearable, the default IDE is pretty annoying.

                          Mike HankeyM Offline
                          Mike HankeyM Offline
                          Mike Hankey
                          wrote on last edited by
                          #19

                          Ron Beyer wrote:

                          the default IDE is pretty annoying.

                          Yes it is! The Atmel Studio IDE is annoying at times, it has come a long way since they released it a year or so ago but like VS it has it's little "Quirks". I'm starting to branch out and investigate other platforms like the Beaglebone Black, etc. but don't know where it will go just a curiosity or something I will pursue?

                          VS2010/Atmel Studio 6.1 ToDo Manager Extension Relax...We're all crazy it's not a competition!

                          1 Reply Last reply
                          0
                          • Mike HankeyM Mike Hankey

                            Think of Atmel Studio as VC6 with a VS2010 IDE. It is built using an Visual Studio Isolated Shell so you should be used to the interface if you do any programming in Visual Studio. I never could get used to the Arduino IDE, I never took the time to learn it. IMHO the Arduino IDE is for more like Engineers and Hobbyists with little programming experience. You just plug the modules in that you need and go, it's pretty simple but if I were going to do a real project I wouldn't use it. Atmel Studio allows you to create reusable libraries, organize projects and hook into source control which is a biggy in my book. If you're going to get serious with embedded systems I would recommend taking the time to learn it, but if you just want to experiment it would probably be better to use the Arduino IDE. The plus side to Arduino IDE is that a lot of people have wrote module for it for just about everything and it is documented very well. That's one of the problems I have every time I get a new device I want to hook up to it I have to either convert Arduino code or start from scratch. I usually just start from scratch.

                            VS2010/Atmel Studio 6.1 ToDo Manager Extension Relax...We're all crazy it's not a competition!

                            L Offline
                            L Offline
                            Lost User
                            wrote on last edited by
                            #20

                            Did you look at Eclipse? I have been using it with the avr plugin to do Arduino development in c++. It works fine for me particularly as I had already installed it for Android development.

                            Peter Wasser Art is making something out of nothing and selling it. Frank Zappa

                            Mike HankeyM 1 Reply Last reply
                            0
                            • L Lost User

                              Did you look at Eclipse? I have been using it with the avr plugin to do Arduino development in c++. It works fine for me particularly as I had already installed it for Android development.

                              Peter Wasser Art is making something out of nothing and selling it. Frank Zappa

                              Mike HankeyM Offline
                              Mike HankeyM Offline
                              Mike Hankey
                              wrote on last edited by
                              #21

                              When I first got into embedded I did a lot of research and Eclipse was one of the IDE's I looked at but it's lack of debugging and complexity scared me off. I started using AVR Studio which was a precursor to the Atmel Studio and just stayed with them. I'm really pissed with them right now though because I had an AVRDragon, nice tool when it works and when I updated the IDE they always ask for the tools to be updated and the Dragon failed to update and it bricked it. It was $50 so I'm not happy about my $50 paper weight.

                              VS2010/Atmel Studio 6.1 ToDo Manager Extension Relax...We're all crazy it's not a competition!

                              1 Reply Last reply
                              0
                              • Mike HankeyM Mike Hankey

                                Awesome little device. Got it setup and running in a short time, very intuitive and easy. Now to learn Linux and want to do some development in Python. I'm excited...of course at my age it don't take much.

                                VS2010/Atmel Studio 6.1 ToDo Manager Extension Relax...We're all crazy it's not a competition!

                                J Offline
                                J Offline
                                JimmyRopes
                                wrote on last edited by
                                #22

                                Mike Hankey wrote:

                                I'm excited...of course at my age it don't take much takes something really perverted.

                                FTFY :-D

                                The report of my death was an exaggeration - Mark Twain
                                Simply Elegant Designs JimmyRopes Designs
                                Think inside the box! ProActive Secure Systems
                                I'm on-line therefore I am. JimmyRopes

                                Mike HankeyM 1 Reply Last reply
                                0
                                • Mike HankeyM Mike Hankey

                                  Awesome little device. Got it setup and running in a short time, very intuitive and easy. Now to learn Linux and want to do some development in Python. I'm excited...of course at my age it don't take much.

                                  VS2010/Atmel Studio 6.1 ToDo Manager Extension Relax...We're all crazy it's not a competition!

                                  CPalliniC Offline
                                  CPalliniC Offline
                                  CPallini
                                  wrote on last edited by
                                  #23

                                  :thumbsup:

                                  Veni, vidi, vici.

                                  In testa che avete, signor di Ceprano?

                                  1 Reply Last reply
                                  0
                                  • J JimmyRopes

                                    Mike Hankey wrote:

                                    I'm excited...of course at my age it don't take much takes something really perverted.

                                    FTFY :-D

                                    The report of my death was an exaggeration - Mark Twain
                                    Simply Elegant Designs JimmyRopes Designs
                                    Think inside the box! ProActive Secure Systems
                                    I'm on-line therefore I am. JimmyRopes

                                    Mike HankeyM Offline
                                    Mike HankeyM Offline
                                    Mike Hankey
                                    wrote on last edited by
                                    #24

                                    :laugh: Who me?

                                    VS2010/Atmel Studio 6.1 ToDo Manager Extension Relax...We're all crazy it's not a competition!

                                    J 1 Reply Last reply
                                    0
                                    • Mike HankeyM Mike Hankey

                                      :laugh: Who me?

                                      VS2010/Atmel Studio 6.1 ToDo Manager Extension Relax...We're all crazy it's not a competition!

                                      J Offline
                                      J Offline
                                      JimmyRopes
                                      wrote on last edited by
                                      #25

                                      If you are anything like me! :sigh:

                                      The report of my death was an exaggeration - Mark Twain
                                      Simply Elegant Designs JimmyRopes Designs
                                      Think inside the box! ProActive Secure Systems
                                      I'm on-line therefore I am. JimmyRopes

                                      1 Reply Last reply
                                      0
                                      • L Lost User

                                        Congratulations. I looked at the BBB but am waiting for the Arduino Tre. I hope it materialises.

                                        Peter Wasser Art is making something out of nothing and selling it. Frank Zappa

                                        B Offline
                                        B Offline
                                        Brisingr Aerowing
                                        wrote on last edited by
                                        #26

                                        Initiating 'ME WANT!' sequence.

                                        Getting information off the Internet is like taking a drink from a fire hydrant. - Mitchell Kapor

                                        1 Reply Last reply
                                        0
                                        Reply
                                        • Reply as topic
                                        Log in to reply
                                        • Oldest to Newest
                                        • Newest to Oldest
                                        • Most Votes


                                        • Login

                                        • Don't have an account? Register

                                        • Login or register to search.
                                        • First post
                                          Last post
                                        0
                                        • Categories
                                        • Recent
                                        • Tags
                                        • Popular
                                        • World
                                        • Users
                                        • Groups