BurgessX / OpenVLC

OpenVLC is an open-source, flexible, and low-cost Visible Light Communication platform. Both software and hardware are open.

Home Page:http://www.openvlc.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

OpenVLC

This is the repository for the OpenVLC platform, an open-source, flexible and low-cost Visible Light Communication System platform. The research and development is led by IMDEA Networks Institute, Spain, but anyone is welcome to contribute.

New OpenVLC1.3 version

We are delighted to announce that OpenVLC1.3 is ready for delivery! OpenVLC1.3 can now achieve a throughput of 400 Kb/s at the Transport Layer at a distance of more than 3 meter, powered simply by the BeagleBone Black!

Details on how to get started are introduced below.

Instructions

OpenVLC needs just a few components to work:

  1. BEAGLEBONE Black (BBB) Board (needs Rev C produced from 2017; you need to connect an external 5V power supply to the BBB): cost $ 45 - $ 60; AM3359 1 GHz, 4 timers, 65 GPIOs
  2. OpenVLC1.3 RevA cape: the VLC front-end
  3. OpenVLC1.3 driver: software defined MAC and PHY layer (implemented as Linux driver) and firmware (to control the programmable real time units of the BBB (PRU))

The software solution is implemented as a Linux driver that can communicate directly with the cape and the Linux networking stack. In OpenVLC, the VLC interface is set up as a new communication interface that can take advantage of the vast range of Linux tools.

Design of OpenVLC

The new OpenVLC1.3 takes advantage of the programmable real time units (PRU) included in the BBB. This,and the new receiver design allow us to increase the transmission frequency to 1 MHz and, thus, the communication rate. One cape can work as Transmitter (TX) or Receiver (RX).

Experimental Setup

Creating the SD Card

We need to flash the BBB with a Debian image. To do that we need a SD Card with at least 4 GB. Follow these steps:

Flashing the BBB

Now that we have the SD Card ready with the image, we need to flash the BBB. Follow these steps:

  • With the power disconnected, insert the SD Card into the BBB and power it up with the USB cable.
  • Connect through SSH to the IP 192.168.7.2.
  • In order to run the OS on the SD Card, flash it into the BBB: go to /opt/scripts/tools/eMMC and run sudo ./bbb-eMMC-flasher-eewiki-ext4.sh
  • Wait until the script of previous steps reports the following message: “eMMC has been flashed”. Once it finishes, disconnect the usb cable and with the BBB switched off, remove the SD Card.

Setting up the OS

The firsts steps are to prepare the beaglebone. This must be done in the OpenVLC board operating as TX as well as in the OpenVLC board operating as RX. These are the steps:

  • Disable the HDMI: The HDMI uses some PRU pins that we need. To disable the HDMI cape edit the uEnv.txt file: sudo nano /boot/uEnv.txt and uncomment the line: dtb=am335x-boneblack-emmc-overlay.dtb
  • Reboot the OpenVLC board. The HDMI is disable after rebooting.
  • Install the headers: Connect the beaglebone to the Internet, and then update with: sudo apt-get update
  • Then the board is ready to install the headers with: sudo apt-get install linux-headers-$(uname -r) The code is in github at https://github.com/openvlc/OpenVLC. In Latest_Version subdirectory you will find the Driver (kernel) and PRU code folders. Just fetch them by using sudo git clone https://github.com/openvlc/OpenVLC, and copy them into the path ”/home/Debian”.

Connecting the cape

Connecting the cape to the BBB is quite easy. You just need to plug the cape to the correct pins as shown in the image below:

Once it’s plugged, connect the 5 V power supply and that’s all.

ATTENTION: Be careful not to bend the components that stand out when you press or pull the cape.

Setting up the TX/RX

There are two parts in the TX/RX, the kernel driver and the PRU code. Follow these steps:

  • In order to load the kernel driver, run the following command inside the Driver folder: sudo ./load_test.sh. With this script, you can change the IP taken by the interface. That’s the IP in the VLC network, so TX and RX must have different IPs (for example TX: 192.168.0.1 and RX 192.168.0.2).

  • Once the module driver is installed, make sure that proper paths and symbolic links have been made for the PRU compiler (clpru) and linker (lnkpru). The following commands can be used to this end:

    cd /usr/share/ti/cgt-pru
    sudo mkdir bin
    cd bin
    sudo ln -s /usr/bin/clpru clpru
    sudo ln -s /usr/bin/lnkpru lnkpru

  • Then go to the PRU folder, enter TX/RX and run sudo ./deploy.sh. This will boot up the PRUs with the code necessary to transmit and receive VLC data.

Working with the TX/RX

Once you have done the steps above in TX and RX, you can start using VLC as a common network interface.

You could measure the achievable throughput by using the iperf tool. To this end, launch iperf in client mode at the TX (sudo iperf -c 192.168.0.2 -u -b 400k -l 800 -p 10001 -t 100) and in server mode at the RX (sudo iperf -u -l 800 -s -i3 -B 192.168.0.2 -p 10001). Make sure that TX and RX have different IPs and the IP of the RX (iperf server) is 192.168.0.2.

The image below shows the results of an iperf test at 2.5 meters of distance:

Feedback

If you have doubts and questions about these instructions, please leave your message in our Google group: https://groups.google.com/forum/#!forum/openvlc

What is Visible Light Communication - LiFi?

Visible Light Communication (VLC), sometimes also referred to as “LiFi", uses standard off-the-shelf visible light LEDs to transmit data using the visible light spectrum. VLC is receiving strong attention from the designers of the 5G networks and beyond. VLC can enable new pervasive wireless systems in the context of the Internet of Things.

Our Mission

The lack of an open-source and low-cost reference platform is hindering the progresses of research and industry in VLC systems. A general-purpose platform would add momentum to VLC and would open up new avenues of VLC research and spark the interest of researchers and engineers. We take an initial step toward this and we design OpenVLC, an open-source Visible Light Communication platform for fast prototyping of new system protocols to build a LiFi network. It runs on a cost-effective yet powerful credit-card-sized embedded board.

Questions

If you have any questions, you can contact us at openvlc.networks@imdea.org and post your questions at https://groups.google.com/forum/#!forum/openvlc

Citation

If you use openVLC for your research, please cite "A. Galisteo, D. Juara, D. Giustiniano, "Research in Visible Light Communication Systems with OpenVLC1.3", IEEE World Forum on Internet of Things (WF-IoT) 2019."

License

Driver code of OpenVLC is released under GNU General Public License v3.0 - see the LICENSE_driver.md file for details. PRU code of OpenVLC is released under BSD-2 license - see the LICENSE_pru.md file for details.

About

OpenVLC is an open-source, flexible, and low-cost Visible Light Communication platform. Both software and hardware are open.

http://www.openvlc.org/


Languages

Language:C 74.3%Language:Batchfile 11.3%Language:Objective-C 9.3%Language:Shell 1.8%Language:Makefile 1.7%Language:Assembly 1.5%Language:Pascal 0.2%