Support & Safety

Common Troubleshooting:

  • Device Not Found: Check USB drivers.
  • Noisy Signal: Ensure common ground.
Safety Symbols / QR Codes

Designed for educational excellence. Made for SEELab3 Users.

8
SEELab3 LOGO / IMAGE

SEELab3

User Manual & Quick Start

Exploration, Experimentation, and Programming

1

Pin Diagrams

Hardware Top View Labeled
PinFunctionRange
A1, A2Analog In+/- 10V
IN1Freq Counter0-5V
PV1Prog. Voltage-5 to +5V
2

Sample Experiments

1. Ohm's Law

Connect a resistor between PV1 and Ground. Use A1 to measure voltage drop.

Circuit Schematic

2. RC Circuits

Observe capacitor charging on the Oscilloscope.

7

Python Programming

Install the library via terminal:

pip install seelab

Example Script:

import seelab
dev = seelab.connect()
val = dev.read_ADC(1)
print(val)
6

Setup & Resources

Installation

  1. Download drivers from website.
  2. Run SEELab_Setup.exe.
  3. Connect device via USB.
Installation Screenshot

Resources: github.com/seelab3

3

Software Apps

Desktop Suite: Integrated Oscilloscope, Multimeter, and Logic Analyzer.

Desktop App Interface

Android App: Use USB-OTG or Bluetooth to monitor sensors on the go.

4

Visual Coding

Use Blockly to drag-and-drop logic for hardware control.

Blockly Workspace Example

Great for beginners to learn loops, logic, and I/O control.

5