We have upgraded the community system as part of the upgrade a password reset is required for all users before login in.

A newbie that needs help



  • Hello, Boken (Onion)
    I need some help, I am a hardware guy, and all this software stuff is coming real fast.
    What I want to do with the omega is
    (1) setup a Webcam with Motion
    (2) control the movement of the Webcam with pan and tilt servos
    (2a) manually with a potentiometer ( joystick )
    (2b) with Blynk
    (3) turn lights on and off
    (3a) manually with a button
    (3b) with Blynk
     
    I need some more help, but for now, the above issues are the first .
    P.S , all of the information (in the community) is coming so fast and with no order of what to do and when.
    Is it a way to have a step by step of how to do whatever the issue is at that time ?
    I'm using the onion omega as my introduction into the world of software and I am just a baby, so please talk to me slow .



  • Hi @Leonard-Stroman, First step is to get your Omega to control the servo motors. Do you have a servo expansion? If so, you can use our library to instruct it to turn servo motors to different angles. The library is available here: https://github.com/OnionIoT/i2c-exp-driver. What programming language would you like to program the Omega in?



  • Thanks for the responds.
    Yes I have all the expansions.
    I have just started using python on the raspberry pi and arduino..
    But I will use whatever is best for me to learn how make the onion omega do what is can do?



  • Ok, do I clone in desk , download ZIP OR Https clone URL ?



  • @Leonard-Stroman You should install git on your computer, then it's as simple as running the command git clone [clone URL].



  • I downloaded Git, ok ... now I have git Bash , git CMD, and git GUI. I assuming I use git CMD?

    I apologize for needing step by step instructions, but I'm totally NEW to this and I dont want to mess anything up....



  • @Leonard-Stroman Yup, you will be using git CMD. This will allow you to download the C/C++ library to interact with the PWM Expansion. You can find resources about programming using C++ here: http://www.cplusplus.com.



  • (1)Should I ssh or serial or console with the omega while git cmd is up and running?
    (2) what do I type or do I copy and paste ?
    (3) once I received the information for GitHub through git, what do I do with it?
    Should it go straight to the omega or is it a file on my computer that i must then load on the omega?

    Thanks you so much for your help and product....

    Ok, I understand that you have a lot going on and I also realize that it's not your job to hold someone hand through the process of creating whatever their desire are with the onion omega.
    But when I say step by step I mean the whole abc's of this path of IoT.
    You see I brought this, with the hope of learning but with a curve to it, a few short cuts.
    Let me put it to you like this, I have no idea what I'm doing, all I know is I have a creation in my head and I'm doing my best to build it.



  • @Leonard-Stroman The git command isn't run on the Omega, but on your computer which will be compiling the software for the Omega. First, you will need to set up a Cross compile environment. You will need a Linux computer running an operating system such as Ubuntu or CentOS, and you should follow this guide to setup the cross compile environment: https://wiki.onion.io/tutorials/cross-compile. Then, on the Linux machine, you should run git clone https://github.com/OnionIoT/i2c-exp-driver, this will download the library that you need to write the software. Next, you will need to write the software to use the library to control the servo motors. The program should accept an input (either from command line or from some API calls), and translate that to a motor position, which you will then use the i2c-exp-driver to send to the PWM expansion. Finally, you will need to compile the program in the cross-compile environment you have setup. Here is a guide that shows you how to create and compile a package: https://wiki.openwrt.org/doc/devel/packages. You will need to familiarized yourself with makefile syntax so that you can create the makefile that tells the compile how to turn your program into its binary form.



  • Man, you are the best!! I will spend the night working on this ...
    Thank you , time to go learn something !!!



  • Can I use a raspberry pi ?



  • @Leonard-Stroman You can use the Raspberry if it has enough storage. However, compilation on the Raspberry Pi might be very slow due to its limited resources. Be prepared to spend up to 24 hours to compile the toolchain alone! Compilation of the actual packages should be much more manageable.



  • Hello,
    Step 6b: Compile Individual Packages , what is the package name? In the setting up cross-compile environment of Omega....

    Can somebody push me in the right direction, I'm sitting here at a stalemate!



  • Hi @Leonard-Stroman, the name of the package is the package that you are creating. Unless you are trying to compile another open source project that's been written for OpenWRT/Omega. Did you write a software in C/C++ that you would like to compile?



  • All I'm doing is what you told me to do earlier in this post . Im at step 6b: Compile Individual Packages, ,,, make tool/install (done), ,,,,,make toolchain/install (done)
    I'm at make package /<package name>/ compile ,,,,, what is the package name?



  • Hi @Leonard-Stroman, the package name is defined by you. You will need to write that package in C/C++ and also define the Makefile so that the cross-compiler will know how to compile your code into binary.



  • Ok, if I have already named the package, I'm not aware when or what I named it ...
    And if I have to name it now, how do I go about doing it ?



  • Hi @Leonard-Stroman, sorry about the confusion, I might have been unclear. It's not a package that you have defined previously. It is something that you need to create before you start the cross-compile process. Cross-compile simply converts the code which you have written into the binary that allows you to run on the Omega. But you will have to write the code to tell the Omega what you want it to do.

    Does that make sense?



  • Ok, how do I write the code for the cross compiler to then transfer into binary for the onion omega ?
    I've done coding with raspberry pi and arduino, but that was code that was already written?

    With the omega do I have to write the whole code from beginning to end or is there a cheat sheet that allow me to just fill in the blanks ?

    Either way where do I begin?



  • @Leonard-Stroman What language did you write the code for Raspberry Pi? Would you be able to put up snippets of the code to give us a sense of what you are trying to get the Omega to do? We will be able to help you better this way.


Log in to reply
 

Looks like your connection to Community was lost, please wait while we try to reconnect.