Welcome to Discovery Lab

Platform for creating new ideas.

Who we are What we do

NEWS

Telebot Core and Balancing Systems (Closed Door Seminar)

The second Seminar was last Wednesday July 3th, and was led by Guiseppe Vietri and Maylem Gonzales. Both discussed their work within the telebot project, starting with Guiseppe and his Core Manager for the Telebot, through which all movements and…..

Discovery Lab Closed-Door Seminars

The Discovery Lab started to host closed door seminars for the Discovery Lab members. The events started yesterday with a presentation by Antonio Triana and Justin Rodriguez. The seminars cover current projects’ development, ideas, and possible future work. The seminars…..

Physical Therapy Department Visit

As part of what will most likely be a very great research collaboration with the Physical Therapy Department, some of the members of the Discovery Lab received a tour of the Motion Tracking Lab by Dr. Leonard Elbaum. The tour…..

Happy Independece-Day Weekend

The Discovery Lab activities will be taking a break from July 4th to July 7th to enjoy the festivities and relax after the past few extra stress-filled weeks. Enjoy the long weekend and be safe!

Solving Coding Conflicts

To manually resolve a conflict, follow these steps: Review the conflicts. Navigate to the classes that are marked for conflict and scroll to the areas with errors. You will notice code that is split by the following markers: <<<<<<<, =======,…..

Manager

import java.io.IOException; import command.Debugger; import parser.DefaultParser; import manager.Manager; public class ClientTestManager extends Manager{ DefaultParser parser; TestStatus status; public ClientTestManager(String key,String i) { super(key,i); parser = new DefaultParser(); super.assignInOutStreamsToParser(parser); status = (TestStatus)super.statusInitialization(new TestStatus(“testStatus”)); super.setDelay(3000); } @Override public void execute() { try{…..

Parser

import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; public class DefaultParser implements SerialParserInterface{         public InputStream input;         public OutputStream output;         @Override         public void setStream(InputStream input, OutputStream output)…..

Status

import java.io.IOException; import command.Debugger; import parser.DefaultParser; import manager.Manager; public class ClientTestManager extends Manager{ DefaultParser parser; TestStatus status; public ClientTestManager(String key,String i) { super(key,i); parser = new DefaultParser(); super.assignInOutStreamsToParser(parser); status = (TestStatus)super.statusInitialization(new TestStatus(“testStatus”)); super.setDelay(3000); } @Override public void execute() { try{…..