@Jerry-Zhang Something isnt working with your link. Also, the only project I see under your name on hackster is one for a Home security monitor.
Posts made by Brad Buskey
-
RE: Cooler Status Monitor
-
RE: OmegaExpansion for Python3
@L-G Yes, the .sh script does call "python /root/script.py"
-
RE: Onion Omega2 Monitor
@Linuk Nice. I may just have to edit this to write this out to display on the OLED module.
-
RE: What could be causing this error?
May be shooting in the dark, but put the "do" back on the "for" line (line 8).
-
RE: Onion Omega Enclosure Box
Here are some enclosures I have found. I have used 2 of them, myself.
https://www.thingiverse.com/groups/omega/things
https://www.thingiverse.com/search?q=onion+omega&sa&dwh=27594136a27ef2eThese are 2 of the ones I use. They work great.
https://www.thingiverse.com/thing:2068124
https://www.thingiverse.com/thing:2067555I dont have a printer, or print enough to warrant buying one, so I use Shapeways to print mine. Just upload the files and choose the material, they do the rest. Turn around time is pretty quick, too.
https://www.shapeways.com -
RE: Cannot connect to Wifi to setup Omega2 Plus (Unmatched double quote ?)
You may need to change the wifi password on the router.
-
RE: My first real-world onion project...
That is cool as hell. And the only thing I did was create a "Magic 8-Ball" with mine...
-
RE: Case
@MARK-HOSKEN There are a few people who have created some drawings already. I have printed out a couple for the expansion board and Omega2
https://www.thingiverse.com/groups/omega/things
https://www.thingiverse.com/search?q=onion+omega&sa&dwh=895931cdf3a0409This is the one I have printed up for the expansion board.
https://www.thingiverse.com/thing:2068124I may get one of these for the minidock
https://www.thingiverse.com/thing:2067555I have used https://www.shapeways.com with great success. I dont know anyone locally who has a printer.
-
RE: Unable to successfully change password...
@Kurt-Roesener said in Unable to successfully change password...:
@Brad-Buskey That isn't the point, I know I can do that, but shouldn't the GUI Settings manager work??
At what point do you stop banging your head against a wall and wipe up the blood from your forehead.
It is not a secret that the web-based console rarely works right. There are plenty of threads complaining about it. The command line always works. That includes for setting the name, wifi info, AP info, and so on.
Now, if you want to go into the web source and fix it, then by all means do so, and share the results. If all you wanted was to change the password, why the hell are you bitching when a solution is given to do exactly what you wanted?
-
RE: Unable to successfully change password...
Just change the password from the terminal using the "passwd" command.
-
RE: Which to buy??
There are actually more than that.
Mini dock only allows the O2 to get power, it has no pinouts. It also allows a Serial connection, great for troubleshooting
Expansion Dock allows for the different expansion boards as well as having access to all of the pinouts. It also allows a Serial connection, great for troubleshooting.
Power Dock adds the ability to charge a battery and use it for power on top of the normal power via micro-USB. However it takes away the Serial connection ability. It also has the pinouts ready to use.
Arduino takes the Expansion Dock and adds the ability to connect and use the different boards/expansions for Arduino boards and hats.I have the first three, and each has their uses. I like the expansion dock for building the OS and configuring and testing the expansions.
The power dock I use for a webcam/security cam as it will keep broadcasting even if the power goes out. (My modem and router are also on battery backup).
The minidock I use to just carry one around with me for tinkering. I have 3 O2's and each has their own dock.
-
RE: LED or other digital display recommendations
I have used this LCD and have gotten it to work with a tutorial here.
https://www.amazon.com/gp/product/B01GPUMP9C/ref=oh_aui_detailpage_o09_s00?ie=UTF8&psc=1This is how I got it working with the LCD
https://wiki.onion.io/Tutorials/Python-I2C-LCD-DisplayYou will need to get an expansion dock, power dock or mini dock or ardruino dock to really make it easy to work with. If you didnt, you can order one from the indygogo campaign.
-
RE: Omega Setup Problem Please Help
Try changing the wifi password and get rid of any and all spaces.
-
RE: procps missing?
@None-None Dont know what to tell you. I ran that this morning and it found the package. did you try doing the install with the procps-ng?
opkg update opkg install procps-ng
Mine already had it installed. I am also on firmware 0.1.9 b156 (with all the latest issues, I am not upgrading any time soon.)
You could also browse out to the http://repo.onion.io/omega2 and get the path to the package there and then use wget to download the package and then opkg to install it (when run from the same dir as the downloaded package)
-
RE: procps missing?
09:07 root@RedDragon:/etc/opkg#> opkg update Downloading http://repo.onion.io/omega2/packages/core/Packages.gz Updated list of available packages in /var/opkg-lists/omega2_core Downloading http://repo.onion.io/omega2/packages/core/Packages.sig Signature check passed. Downloading http://repo.onion.io/omega2/packages/base/Packages.gz Updated list of available packages in /var/opkg-lists/omega2_base Downloading http://repo.onion.io/omega2/packages/base/Packages.sig Signature check passed. Downloading http://repo.onion.io/omega2/packages/packages/Packages.gz Updated list of available packages in /var/opkg-lists/omega2_packages Downloading http://repo.onion.io/omega2/packages/packages/Packages.sig Signature check passed. Downloading http://repo.onion.io/omega2/packages/onion/Packages.gz Updated list of available packages in /var/opkg-lists/omega2_onion Downloading http://repo.onion.io/omega2/packages/onion/Packages.sig Signature check passed. 09:07 root@RedDragon:/etc/opkg#> opkg list | grep procps procps-ng - 3.3.11-3
-
RE: procps missing?
What is listed in your /etc/opkg/distfeeds.conf file?
It is like you are missing a repository.
src/gz omega2_core http://repo.onion.io/omega2/packages/core
src/gz omega2_base http://repo.onion.io/omega2/packages/base
src/gz omega2_packages http://repo.onion.io/omega2/packages/packages
src/gz omega2_onion http://repo.onion.io/omega2/packages/onion -
RE: Omega Console won't open??
You need to search this topic for the instructions on how to either connect via SSH or Serial. This issue has happened a lot, and has been discussed a lot.
Also, check the links at the top about common problems and their solutions.
-
RE: procps missing?
opkg list | grep procps
it will look for any instance of procps. it returns:
procps-ng - 3.3.11-3
so you will want to actually run:
opkg install procps-ng