Best antenna wins. Not always, As long as you have enough satelites you should get an accurate fix, but if you're picking up weak bounces off a building that could affect the accuracy. Most of the more modern chipsets can kick out updates at 10 Hz or better, so while not ideal for F1, might be usef...
I've added a file to init.d, it contains a couple of simple mount commands init.d is the old place to host startup scripts which normally need to be formatted in a certain way (they need to respond correctly to being given arguments like start/stop/status/restart). For mounting stuff the normal pla...
I think there are 2 solutions: - Use something like apt-cacher-ng. Install it on a Pi, upgrade it (to acquire the packages locally). Then modify apt sources as required on the other Pis and upgrade them reusing the cache. Not automatic but probably producing a clean job. This is probably the easies...
Good morning! I've this configuration: NET A: where I'm located with my "PC" where runs PuTTY NET B: here is located the "Raspy A" with SSH port opened to WAN NET C: here is located the Web Server "WWW" and the "Raspy B". All ports are closed to WAN ------------------------------------ Between Rasp...
It is a moot point, because hacking the board on your own, is not breaking any regulations. Heathkit used to sell everything from breadboard breakout kits to Ham Radio Equipment, TV's and computers. The manufacturer that had the original board made, only have to live up to the rules for the FCC fil...
I am looking to create a GPS tracker for a model rocket. I am wondering if there is a way to use a Raspberry Pi with an Adafruit GPS Breakout and a small power source for the radio module that will send the location of the rocket. Can I use the same project for this; my range is at max 2 miles. Whe...
There is no LEGAL way to do what you want, directly. You could put an access point acting as a range extender somewhere between your router and the Pi, configured as either a wireless repeater or as a remote, wired, range extender. Plenty of legal ways for the OP to do what they want. They can use ...
For years now I've been writing in PHP & JavaScript with the PHP echoing out HTML. The PHP being on the server side and the JavaScript on the client side. The browser recognizes that the URL is PHP and interprets/runs it. In that scenario it's the server that recognises that the script is php not t...
Outdated web developer here. Update me. Was using this old tool => Use this new tool instead apache1 and 2 => ?? php/perl/c for CGI => ?? javascript => same? Linux => same? mysql (now mariadb) => ? To go back to the original question. I'd say they're all valid still. For small web apps it might be ...
The only reason I launch minicom is to pre-set the serial port parameters. It seems to be the most reliable way to set-up the serial0 port after a re-boot. This is the revised bash script devoid of any xte usage. Have you looked at the stty command, that should let you configure the serial port wit...
Noises from the Pi board may also be an indication of a failing PSU (rather than failing Pi). The latter screenshots seem to indicate the Pi hasn't brought the wifi interface up properly, the likely reasons I can see for that are: older noobs/libreelec images, hardware fault on the Pi, or PSU fault....
I would like to make a remote control car that can be controlled through multiple thick concrete walls, is this possible, and if so, what frequency transmitter would I need? Also I would like it to transmit video back, is this possible through walls, and if so, how? It may be hard to achieve (parti...
As above you could do all this in a single python script running a suitable module. This would also remove the need for apache/nginx and php. I think there's some guides on the main raspberry site for python+flask as the webserver. you could then have a single python script that handles the web requ...
That’s good news. Another problem: I can’t issue a cert to a device with a private IP. How can I work around this? Certificates are generally issued to a FQDN (fully qualified domain name) not an IP, so you'll need to have the dns capture redirect to a hostname you can control. There are a couple o...
I thought of doing the latter but how would the phone validate the cert without internet? There's generally three checks to ensure a certificate is valid: Date & Time. The certificate will a time period it's valid for, for Lets Encrypt it's only 3 months, for a bought certificate it would normally ...
While I'm still in the process of doing in-depth research on the topic, I thought it would be beneficial to post to see if anyone has any recommendations for how to communicate between a Pi and and Arduino over Radio Frequency 433 MHz. ... From what I've been reading so far, RF seems quite limited ...
I've seen similar errors when code has been compiled for ARMv7 targets when run on a Pi1 (which is ARMv6). Compiling on a raspberry may yield suitable code (although will take longer to complete). I'm not sure on options for cross compiling as it's something I've not looked at in much detail yet.
I too am having the same issue, I get ~340 down but my Pi is reading about 60-70 down, even with a Gigabit adapter attached. How are you measuring that 60-70 speed? Remember the USB bus is shared between all USB devices, so if that's the speed reported from some download program that's writing to a...
I am looking to run live tv (i.e. Mobdro or equivalent) I know Mobdro is android app. So is there a Raspbian program that is as good or better than mobdro? If so I will need links and instruction to download and install. I appreciate all your help. If your looking for something that gives you acces...
Lora or other similar radio modules (HopeRF have a quite a range of devices) would likely work, however the license free ISM bands tend to work best if you've got Line of Sight between the various devices. You should check what bands, power limits, duty cycle limits you have in your area (for north ...
For using windows authentication on the pi there's a few options, however some require options to be added to the AD schema (or some other directory system to be used along side) and may also require a suitable AD account to join the domain. That is all separate to what wine does. So, I already boo...
Hello friends, I have tried in all ways to enter my Raspberry PI 2 in the AD Domain that I use in the company I work for. I use the "Raspbian" Wine distribution because I will emulate Windows programs in RPi2. Could you help me solve this problem? I've already seen topics saying that I need Samba, ...
Primarily I made little experiments where I sync two systems with GPS. I used NTP daemon which says individually each of them is synchronized at an accuracy of 1 micro second with UTC, however, when I compare them I found they are 30 micro sec apart from each other. But if both of them were 1 micro...
I want to write a simple application to read a data stream from a USB input, select some record types and output to an Rs232 output. Which is the best programming language please? Any sample programmes welcome. Thanks Personally I'd probably use Ruby or Perl, others would likely suggest Python. In ...