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

Idea Dump



  • @Kit-Bishop Interesting! Kind of an awkward form-factor, but good to see that the need is recognized.



  • On the topic of ideas: I want to use an Omega2 to supercharge retro computers like the Commodore 64. Give it more storage, Wi-Fi, and so on. I've already done this with an Arduino (link) but a real Linux command-line through the Omega would be amazing.

    Interface would be through serial, so the second UART on the Omega2 is very welcome.



  • Oh Yes! That is so great!
    @francis-chung and @administrators, Is possible get this BreadBoard Dock? Or how much will be cost?

    @Leif-Bloomquist @Laurence-HR They've done it šŸ™‚ See latest on Omega2 kickstarter at https://www.kickstarter.com/projects/onion/omega2-5-iot-computer-with-wi-fi-powered-by-linux


  • administrators

    @Laurence-HR The Breadboard Dock will be given to all backers who have pledged $64 or more.
    Details on price and availability will be announced after the campaign šŸ™‚



  • I have a project where I need to record every barcode scan before it reaches the Point of Sale system.

    I would like to use a USB barcode scanner, plug it into the Omega and then record each scan in a text file.

    At the same time the Omega must output the barcode just scanned to the Point of Sale system via USB.

    Does anyone have any idea how to do this?



  • I have found this:
    http://www.linux-usb.org/gadget/ and
    http://isticktoit.net/?p=1383

    Both seems to indicate that this should be possible?



  • Hey guys, I have an onion omega and I have a project idea but I don't know where to start.

    What I need to achieve?
    I need a QRCODE reader, that will read the qrcode and either do a bip or flash a led to inform the user the code was read.

    This is a project for a social service I'm currently involved, but I have no idea how to build it.

    I'm a coder, but an IoT noob, don't even know which parts to buy!

    I have to mention that it has to be somehow cheap, because if I'm success full I might have to build dozens of it.

    Thank you for your help!



  • I need to read the APK guide, I suppose....

    But I wonder how hard it is pair (bluetooth) two Omegas (or Omega2s) together?

    Basically with the pair, you have one doing the monitoring and the second performing tasks. The reason for pairing is that the system is not completely shut down by one of them going out. True, the one performing actions could still be performing incorrect actions if it is the problem module, but there is an idea I could program a baseline action that performs no actions as the default.

    IF [one] perceives <threshold_event_z>, then
    [two] performs <action_z>
    else
    IF [one] perceives <threshold_event_y>, then
    [two] performs <action_y>
    ...
    else loop



  • @Rafael-Roman The cheepest way would be to build a phone app. All the hardware that you need are already assembled and ready to use in any smart phone. There are tons of QRCODE apps out there, so you could perhaps modify and existing open-source one to suit your needs.



  • I want to mate an onion to a SNES cart to make a development platform for retro SNES games. I think that the onion2 would have a larger size than any game ever made, but would also allow for wifi connections in game. I have always wanted to be able to do networked multiplayer on the SNES, as they still have one of the best couch co-op games in Super Smash TV šŸ˜‰

    I mainly want to realize the Google April Fool's Day joke in 2012, except on the SNES: https://maps.googleblog.com/2012/03/begin-your-quest-with-google-maps-8-bit.html



  • Okay, I see this for Android but not for Linux. I'm sure I'll find something. I was just wondering if there was anything baked into Omegas.

    http://www.londatiga.net/it/programming/android/how-to-programmatically-pair-or-unpair-android-bluetooth-device/

    @TheMonkey-King said in Idea Dump:

    I need to read the APK guide, I suppose....

    But I wonder how hard it is pair (bluetooth) two Omegas (or Omega2s) together?

    Basically with the pair, you have one doing the monitoring and the second performing tasks. The reason for pairing is that the system is not completely shut down by one of them going out. True, the one performing actions could still be performing incorrect actions if it is the problem module, but there is an idea I could program a baseline action that performs no actions as the default.

    IF [one] perceives <threshold_event_z>, then
    [two] performs <action_z>
    else
    IF [one] perceives <threshold_event_y>, then
    [two] performs <action_y>
    ...
    else loop



  • I want to make a 'listener.' Basically use the Onion (or Onion 2) as the controller for a host of receivers/transmitters. (Z-Wave, Zigbee, Wifi, etc.)

    Box it up and use it to listen/communicate with all the IoT devices in a room and act as the middleman to a localhost server which stores all the AI routines and services.

    So I need:

    1. all the different types of receivers (and probably get them as a multiples to build several of these)
    2. Make the breadboard socket or cabled to allow for different units to be snapped in or out as the number of related devices are added or subtracted from the home.
    3. Make the breadboard socket for Onion so that I make the Onion a snap-in controller
    4. Program the Onion to accept and acknowledge all device connections and to connect back to the central server. ID itself by unique designation (i.e. room name)

    Because this idea is be a middleman between a central server and a collection of IoT devices, the communication can be as "close to the metal" as possible. Meaning I don't need to spend time creating an interface or compiler on the Onion. I can have the Onion know which device it is supposed to listen to and how to talk to it on the kernel (or deeper) layer. The interface or programmatic layer would sit on the interface (browser?) client (PC, tablet, phone) or API at the localhost server.



  • By the way, I am discarding this idea...
    It was to provide a cheap yet reliable way of zoning HVAC to specific rooms using not vent covers, but shunts built into the ducts.

    Zoning HVAC is a very bad idea unless your HVAC itself is designed for zones. You end up either icing the condenser or overheating the blower. So while I like the ideas of pairing Onions to have each do separate tasks but work in concert, and the idea of snapping an Onion into a 120v mains instead of consuming an outlet for a transformer wall wart, these two ideas would not make for a good HVAC solution in the common household.

    @TheMonkey-King said in Idea Dump:

    Okay, I see this for Android but not for Linux. I'm sure I'll find something. I was just wondering if there was anything baked into Omegas.

    http://www.londatiga.net/it/programming/android/how-to-programmatically-pair-or-unpair-android-bluetooth-device/

    @TheMonkey-King said in Idea Dump:

    I need to read the APK guide, I suppose....

    But I wonder how hard it is pair (bluetooth) two Omegas (or Omega2s) together?

    Basically with the pair, you have one doing the monitoring and the second performing tasks. The reason for pairing is that the system is not completely shut down by one of them going out. True, the one performing actions could still be performing incorrect actions if it is the problem module, but there is an idea I could program a baseline action that performs no actions as the default.

    IF [one] perceives <threshold_event_z>, then
    [two] performs <action_z>
    else
    IF [one] perceives <threshold_event_y>, then
    [two] performs <action_y>
    ...
    else loop



  • This post is deleted!


  • @matthew-losquadro said in Idea Dump:

    Would love if you could create offline / paper-wallets for bitcoin on the device, all automated and all that.

    this is a nice idea. It is something that i am looking into. I actually had the notion of creating a node on the Omega - but i am not sure that it will be possible. Will be looking into this further during the month - i only received my Omega2+ last week šŸ™‚ - and i will keep you posted.



  • I found a project idea on hackster.io that I'd like to try with Omega2. Basically, putting up lights on the underside of the kitchen cabinets, with a motion sensor and an ambient light sensor to control when the lights turn on and how bright they are. Not really sure what I'd need yet, I have the Omega2+ with the expansion dock.



  • @francis-chung i would like to build a app to be able to code on the go. when ever you have an idea you just take your phone and code. i have the base visual of it but i need help to implement languages and have maybe a Github API to push projects.algologic_menu algologic_input



  • @Guillaume-Langelier this sounds interesting. Can you give use case example at how you expect it to work or how the user will use it ?



  • "The" panic button .

    Once you press it start a series of task like sending a message (email, SMS even WhatsApp and Telegram). It could also know your location with the GPS module.



  • Hi guys, I'm trying to set up an array of addressable RGB LEDs to create a large 8 bit style display. Maybe I'm just not looking in the right places but I can't seem to figure out how to go about setting this up... thoughts? Also I'm working with an omega2 and an omega2+



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