Maxsee Viewer
Viewer for the Maxsee USB/Wifi microscope. Receives the microscope's image stream over WiFi and displays it on a PC.
This wouldn't exist without the work done by czietz:
https://www.chzsoft.de/site/hardware/reverse-engineering-a-wifi-microscope/
https://github.com/czietz/wifimicroscope/
Microscope model
This program only works with the MaxSee Wifi microscope. This is sold on
Amazon under various brands. If your Microscope provides a Wifi hotspot with the
name Maxsee_3a96, chances are that it will work.
Installation
pip install maxsee-viewer
This provides the maxsee_viewer command. As of now, no icons / start menu
entries / etc are created. On Windows, you might need to add your Python/scripts
directory to path or something, didn't test it.
Usage
- Switch on the microscope
- Connect your PC to the
Maxsee_3a96Wifi network - Run the command
maxsee_viewer.
MaxSee viewer should open immediately and start displaying images continuously.
Use the "Save" menu command to save a snapshot. Snapshots are saved in the
current working directory as snapshot0.jpg, snapshot1.jpg, and so on.
Snapshots are always 1280x720 pixels as sent by the microscope.
Hacking
If you want to do something else with the live stream, you can just use the
receiver without the viewer. src/maxsee.py packages everything necessary in a
convenient context manager.
Usage example:
from pathlib import Path
from maxsee import maxsee_receiver
with maxsee_receiver() as receiver:
# receiver is a queue.Queue object
data = receiver.get()
# data is raw JPG byte data
Path("dump.jpg").write_bytes(data)
Release files for maxsee-viewer 1.0.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| maxsee_viewer-1.0.0.tar.gz | 5.8 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| maxsee_viewer-1.0.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 13.2 kB
Release files / maxsee_viewer-1.0.0.tar.gz
| Download URL | maxsee_viewer-1.0.0.tar.gz |
|---|---|
| Size | 5.8 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
61c573cfc424b4a5f599e5797738496dd08fcd4332d2fa4e2bd0f2a4f3733942
|
|
BLAKE2b-256 checksum How to use checksums |
27215d7509942bbf43f420f4fb73e2ef56631d9970a1687af5a23476016a9565
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.3
|
Release files / maxsee_viewer-1.0.0-py3-none-any.whl
| Download URL | maxsee_viewer-1.0.0-py3-none-any.whl |
|---|---|
| Size | 7.4 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
3fe34669fa7f7009b48d4b548b5ad543e570ef73d25141e851e75e7cbe6b36f8
|
|
BLAKE2b-256 checksum How to use checksums |
17016d4b11acc882750ee8b98f7d7fedb06ed90f101467f3e16fd2962f96a9e4
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/6.1.0 CPython/3.12.3
|