planktoscope/docs/remote_access.rst
2019-12-04 16:08:15 -08:00

57 lines
1.4 KiB
ReStructuredText

=============
Remote access
=============
.. warning::
Make sure your Raspberry Pi is connected to Internet either via WiFi or Ethernet.
Update your Pi
==============
Use the command lines to first update and upgrade your Raspbian ::
$ sudo apt-get update -y
$ sudo apt-get dist-upgrade -y
It's a good practice to reboot after that using ::
$ sudo reboot now
Packages installation
=====================
Install the packages for the standalone WiFi ::
$ sudo apt-get install dnsmasq hostapd -y
Install the packages for the standalone WiFi ::
$ sudo apt-get install dnsmasq hostapd -y
$ sudo apt-get install git -y
$ git clone https://github.com/silvanmelchior/RPi_Cam_Web_Interface.git
$ cd RPi_Cam_Web_Interface
$ ./install.sh
.. _test_suite:
Test suite
==========
If you wish to run the picamera test suite, follow the instructions in
:ref:`dev_install` above and then make the "test" target within the sandbox::
$ source sandbox/bin/activate
(sandbox) $ cd picamera
(sandbox) $ make test
.. warning::
The test suite takes a *very* long time to execute (at least 1 hour on an
overclocked Pi 3). Depending on configuration, it can also lockup the
camera requiring a reboot to reset, so ensure you are familiar with SSH or
using alternate TTYs to access a command line in the event you need to
reboot.