Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/machaj45/little-embedded-lock-in
This is a virtual device utilizing the STM32 F303 board as a lock-in amplifier.
https://github.com/machaj45/little-embedded-lock-in
c pycharm-ide python3 qt5 stm32 stm32f303
Last synced: 17 days ago
JSON representation
This is a virtual device utilizing the STM32 F303 board as a lock-in amplifier.
- Host: GitHub
- URL: https://github.com/machaj45/little-embedded-lock-in
- Owner: machaj45
- Created: 2021-02-02T19:37:42.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-11-03T13:55:52.000Z (about 2 years ago)
- Last Synced: 2024-10-31T17:44:51.601Z (2 months ago)
- Topics: c, pycharm-ide, python3, qt5, stm32, stm32f303
- Language: C
- Homepage: https://github.com/machaj45/little-embedded-lock-in
- Size: 8.81 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Little Embedded Lock-in
This is little lock-in amplifier that is based on NUCLEO-F303RE - STM32 Nucleo-64 development board. This device comunicate with desktop aplication that computes outcome of selected mesurments and also gives user ability to controlo nucleo board.
## Main manual
Main manual is in this repository in pdf format that gives clear information how to handle this device.
## Unknown Issues
Please report any issues that bothers you in issue section of this repository or on email [email protected]
Thank you in advance.
## Known Issues
- Pyserial needs **permmision** on ubuntu for accesing usb ports
- solution:
- use user group to give your self priviliages
```
sudo usermod -a -G dialout {your_user_name}
```
- restart your computer
## Known Issues for building on linux
- PyQt5 is missing library on ubuntu 20.10 called **libxcb-xinerama0**
- solution:
- install that library to your system
```
sudo apt install libxcb-xinerama0
```