Skip to content
forked from vishhvaan/eve-pi

The EVolutionary biorEactor (EVE)

License

Notifications You must be signed in to change notification settings

davincios/eve-pi

 
 

Repository files navigation

The EVoltionary biorEactor

The EVE is an open framework for an automated continuous culture system.

  • Easy to use for programmers and non-programmers
  • Cheap
  • Replicate functionality of a morbidostat/chemostat/turbidostat
  • Versatile & easily modifiable for different purposes

This device is meant to be used for the study of population dynamics and evolution.

Build it!

Head over to Start Building folder to find the 3D stls and circuit schematics (along with KiCAD project).

PCB

Installation

  1. Download and flash the Raspbian Buster OS on an SD card.
  2. Insert the SD Card into the Pi and connect the Pi to a display, keyboard, local area network, and power.
  3. Note the IP address of the device with the command:
$ ifconfig
  1. Enter super user mode with the command:
$ sudo su
  1. Run the setup script by entering the command:
$ bash <(curl -s https://raw.githubusercontent.com/vishhvaan/eve-pi/master/st_eve.sh)
  1. Follow the on-screen instructions to install the software.
  2. Navigate to the folder scripts/live/ and copy the sample-conf.in to eve-conf.ini.
  3. Edit the eve-conf.ini file based on the "Configuration File Parameter Definitions" file in the "Start Building" folder.*
  4. If the Pi has a browser, navigate to the web interface by accessing: http://localhost.
  5. On a browser on the network, navigate to the web interface by accessing the IP address or hostname of the device (e.g. http://eve.local_domain.net).

* If the PCB is used or the breadboard was wired like the schematic, the default values for the hardware address in the sample-conf.ini file will work.

For a headless install:

  1. Download and flash the Raspbian Buster OS on an SD card.
  2. Add a file titled ssh to the boot partition.
  3. Insert the SD Card into the Pi and connect the Pi to the local area network and power.
  4. In a seperate computer's terminal run a command to connect to the pi.
$ ssh pi@raspberrypi
  1. Login to the pi with the password raspberry
  2. Continue from step 3 in the non-headless install.

Install for Docker for ARM Devices

Pre-built images coming soon to Docker Hub!

Build the Docker Image

Use the Dockerfiles in the repo to build images yourself. Use the images to spin up containers in the Pi with EVE WebUI and all the programs built-in.

On ARM Devices

  1. Install Docker on the Raspberry Pi.
  2. Install git on the Raspberry Pi.
$ sudo apt install -y git
  1. Clone the repository to the home directory.
$ sudo git clone https://github.com/vishhvaan/eve-pi.git /eve
  1. Move to the correct directory.
$ cd /eve
  1. Run the Docker build command.
$ docker build -t eve:pi .
  1. Create a container.
$ docker create --name = eve1 \
    -p 80:80 \
    -p 8050:8050 \
    -e PUID=1000 \
    -e PGID=1000 \
    -v /eve/data:/data \
    eve:pi
  1. Start the container.
$ docker start eve1

On UNIX-based x86/x64 Devices

Emulate the ARM environment with QEMU. Build images with the Dockerfile.arm32v7.

Shout Outs

The EVE uses a number of open source projects to work properly:

  • script-server - Script server to run programs on the Pi
  • slack-api - Uses the Slack API for Python for experiment monitoring
  • plotly - Uses Dash for real-time plotting
  • KiCAD - For Circuit Schematics and PCB Designs
  • Docker - For creating self-contained application platforms

New Features

  • Configurable save locations (USB or Network)
  • Combined graphs of culture units

License

MIT

About

The EVolutionary biorEactor (EVE)

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 60.5%
  • JavaScript 24.9%
  • Vue 10.6%
  • HTML 2.1%
  • CSS 1.1%
  • Shell 0.5%
  • Other 0.3%