Go to advanced search

by MarkHaysHarris777
Sun May 17, 2015 10:22 am
Forum: Raspberry Pi OS
Topic: iw command returns nl80211 not found
Replies: 10
Views: 12154

Re: iw command returns nl80211 not found

yes i did mean iw From linux wiki: About iw: iw is a new nl80211 based CLI configuration utility for wireless devices. It supports all new drivers that have been added to the kernel recently. The old tool iwconfig, which uses Wireless Extensions interface, is deprecated and it's strongly recommende...
by MarkHaysHarris777
Sun May 17, 2015 10:19 am
Forum: Beginners
Topic: What OS am i running?
Replies: 11
Views: 1656

Re: What OS am i running?

Borked comes from the Swedish Chef on the Muppet Show and a typographical error from "borken", so it's a word of American origin. http://en.wikipedia.org/wiki/Swedish_Chef http://www.urbandictionary.com/define.php?term=borked ~cool, you know, I haven't thought about that character for a long while....
by MarkHaysHarris777
Sun May 17, 2015 10:00 am
Forum: C/C++
Topic: Can't build EmulationStation with the latest raspbian
Replies: 4
Views: 917

Re: Can't build EmulationStation with the latest raspbian

You may not be doing anything wrong.

If the build process need 4.7, and the latest repo has 4.6, I'm not sure what you do... wait till 4.7 is available!

Maybe you could build it on a PC (cross compile and move it over?)


Mine is showing g++ 4.6.3-14
by MarkHaysHarris777
Sun May 17, 2015 9:45 am
Forum: Beginners
Topic: What OS am i running?
Replies: 11
Views: 1656

Re: What OS am i running?

Actually , people have completely borked their Pi1 systems because of this after innocently adding debian.org to their sources.list and doing an apt-get update && apt-get upgrade ... :lol: Thanks ghans, I needed that this morning. I usually say, "bonked," but 'borked' gets the point across... and t...
by MarkHaysHarris777
Sun May 17, 2015 9:32 am
Forum: Raspberry Pi OS
Topic: iw command returns nl80211 not found
Replies: 10
Views: 12154

Re: iw command returns nl80211 not found

The RTL8188cus is a RealTek device... your dmesg and lsusb are reporting the same device correctly. I don't think you mean iw command; maybe you mean the iwconfig command?

What does your iwconfig command show?
by MarkHaysHarris777
Sun May 17, 2015 9:25 am
Forum: Automation, sensing and robotics
Topic: Raspberry pi or microcontroller
Replies: 3
Views: 1000

Re: Raspberry pi or microcontroller

What do you guys recommend me to use for this projects? Raspberry pi or just a simple microcontroller like a pic microcontroller or others? Check out the pyboard and micro python: https://micropython.org/ The pyboard has enough power to do many things native (all by itself) and it does have adc and...
by MarkHaysHarris777
Sun May 17, 2015 9:12 am
Forum: Astro Pi
Topic: make astro pi use more cpu?
Replies: 4
Views: 1504

Re: make astro pi use more cpu?

I might try to use the task manager just in case you can change the priority like I usually do on my linux laptop. If there is a way . . . sudo apt-get install htop Your can change the (NI) niceness of the process with htop: use f8+ and f7- To use f7- you will have to run htop with sudo. From htop ...
by MarkHaysHarris777
Sun May 17, 2015 4:16 am
Forum: General programming discussion
Topic: Please Help Noob control 8-ch USB relay
Replies: 18
Views: 3746

Re: Please Help Noob

2tirefire wrote:
I'm stuck on step 3 and cannot go any further.

step3:./bootstrap
./configure
make
sudo make install
What errors do you get on step three (3) ?
by MarkHaysHarris777
Fri May 15, 2015 8:29 pm
Forum: Beginners
Topic: Replace Android x86 with Raspberry OS
Replies: 3
Views: 1041

Re: Replace Android x86 with Raspberry OS

If you want to use a touch screen with the Raspberry PI there are several options... google is our friend.
by MarkHaysHarris777
Fri May 15, 2015 8:14 pm
Forum: Beginners
Topic: Two SEN-11931 temp sensors on RasPi?
Replies: 3
Views: 458

Re: Two SEN-11931 temp sensors on RasPi?

On page 10 of the datasheet for the tmp102 (the sparkfun sen-11931 uses) you will find the address scheme: Up to four of these devices may be connected on the i2c bus... if you connect the A0 pin to one of the following you will get the associated address: 1001000 gound 1001001 V+ 1001010 SDA 100101...
by MarkHaysHarris777
Fri May 15, 2015 8:01 pm
Forum: Advanced users
Topic: Dynamic Message of the Day
Replies: 2
Views: 2042

Re: Dynamic Message of the Day

Very nice! --good job!




.
by MarkHaysHarris777
Fri May 15, 2015 7:58 pm
Forum: General discussion
Topic: Continuous Camera Preview Risk?
Replies: 3
Views: 647

Re: Continuous Camera Preview Risk?

Snugglasaurus wrote:Is there any risk in doing this? For example, could this overwork my Pi and cause it to overheat?
No.
by MarkHaysHarris777
Fri May 15, 2015 7:57 pm
Forum: Beginners
Topic: Having Trouble With OSs.
Replies: 2
Views: 452

Re: Having Trouble With OSs.

I have no trouble in NOOBS/Raspbian. Any thoughts? You're going to hate this answer... use NOOBS/Raspbian... in fact, just use Raspbian; stop bonking around with the other OS(s) until such time as you can setup a modern hdmi display. If you can get Raspbian to work with vga, why fight the problem?
by MarkHaysHarris777
Fri May 15, 2015 7:54 pm
Forum: Troubleshooting
Topic: Buttons and LCD not working
Replies: 20
Views: 2402

Re: Buttons and LCD not working

Ah, error messages are helpful. Is it possible you missed a step in the instructions, possibly sudo apt-get install vlc Nope had done that. Did it again just in case, same error. If the error is that the module vlc is not found, and you are sure that you installed it, then the problem is your pytho...
by MarkHaysHarris777
Fri May 15, 2015 6:49 pm
Forum: General discussion
Topic: /etc/network/interfaces changed,weird 2 LAN IPs instead of 1
Replies: 71
Views: 118131

Re: /etc/network/interfaces has changed

What does ifconfig show?

sudo ifconfig


?
by MarkHaysHarris777
Fri May 15, 2015 6:24 pm
Forum: C/C++
Topic: How to read and write on a pin ?
Replies: 2
Views: 797

Re: How to read and write on a pin ?

Your errors are classic C compile time errors when the compiler finds missing semi colons ;

Your code has several obvious missing semi colons ;

The structure (style) you have chosen is difficult to read, and has probably led to coding errors and logic errors.
by MarkHaysHarris777
Fri May 15, 2015 6:07 pm
Forum: Troubleshooting
Topic: Buttons and LCD not working
Replies: 20
Views: 2402

Re: Buttons and LCD not working

The cookbook approach to projects is usually not a good idea, unless you already know what you're doing. This is just a general statement that I find to be true. The answer is start debugging. What happens instead-- any error messages? ... any misbehaviors? Have you been able to code gpio control (b...
by MarkHaysHarris777
Fri May 15, 2015 5:56 pm
Forum: Beginners
Topic: hobbyking recierver to raspberry pi 2
Replies: 1
Views: 350

Re: hobbyking recierver to raspberry pi 2

how can i have a raspberry pi read a hobbyking recierver, i know this involves reading the pwm and how would i do that You must measure the time difference between the rising and falling edges of the pwm signal. An alternative would be to average the signal and read it with an Analog to Digital Con...
by MarkHaysHarris777
Fri May 15, 2015 5:48 pm
Forum: Troubleshooting
Topic: StartX, top menu flashing
Replies: 5
Views: 6123

Re: StartX, top menu flashing

Hi everybody, I have a strange problem when I use the GUI when starting the X server. I added a new user and added it in sudour, then started startX and now my top menu bar is flashing white every second with no buttons appearing, it does work however in the pi account though. I don't know what wen...
by MarkHaysHarris777
Fri May 15, 2015 4:09 pm
Forum: General discussion
Topic: /etc/network/interfaces changed,weird 2 LAN IPs instead of 1
Replies: 71
Views: 118131

Re: /etc/network/interfaces has changed

I copied some of the old 'interfaces' parameters like address, netmask, and gateway. It seems to work, but hostname -I says I have two IPs. I only have a ethernet connected. No wifi. What's the proper configuration for static IP for just eth0 now? I'm not sure what you're asking. Normally, you will...
by MarkHaysHarris777
Fri May 15, 2015 3:10 pm
Forum: Beginners
Topic: Chipmunk BASIC on RasPi?
Replies: 16
Views: 3467

Re: Chipmunk BASIC on RasPi?

Please let me know what you use this for, and if you think there are any features you think it might be interesting or useful to add to a simple Basic interpreter for the Pi. hi Ron, for many years I have used Chipmunk BASIC as an educational tool in the same spirit of the original authors (Kemeny ...
by MarkHaysHarris777
Fri May 15, 2015 2:48 pm
Forum: Beginners
Topic: Terminal Emulators
Replies: 8
Views: 10918

Re: Terminal Emulators

I've been looking around and haven't been able to find any terminal emulator software for my Raspberry Pi 2. If you are talking about finding an ssh terminal emulator to use on Windows to talk to your RPi, then yes, Putty is the solution almost everyone uses. If you are talking about a terminal emu...
by MarkHaysHarris777
Fri May 15, 2015 2:28 pm
Forum: HATs and other add-ons
Topic: Heatsink or no heatsink?
Replies: 9
Views: 1611

Re: Heatsink or no heatsink?

I have a RPi B version 2 . . . Is it recommended to [put] heatsink(s) on various ICs? No. All of my PI(s) are encased; I use the translucent case from Element14 for my PI(b+)s and my PI(2B)s. They are 'ON' 24x7x365 most headless just silently clicking away (all passive cooling) and they barely get ...
by MarkHaysHarris777
Fri May 15, 2015 7:15 am
Forum: Beginners
Topic: Chipmunk BASIC on RasPi?
Replies: 16
Views: 3467

Re: Chipmunk BASIC on RasPi?

hi, since getting the font problem straightened out on my PI(b+) also, I decided to run sierpinski.bas on both PI(b+) and PI(2B) for a comparison because sierpinski ties up one core, and also ties up the gpu: each machine is plotting 77,000 random points to the BASIC X graphics canvas: PI(b+) : 73 s...

Go to advanced search