1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
# SimulIDE
Electronic Circuit Simulator
SimulIDE is a simple real time electronic circuit simulator.
It's intended for general purpose electronics and microcontroller simulation, supporting PIC, AVR and Arduino.
This is not an accurate simulator for circuit analisis, it aims to be the fast, simple and easy to use, so this means simple and not very accurate electronic models and limited features.
Intended for hobbist or students to learn and experiment with simple circuits.
SimulIDE also features a code Editor and Debugger.
Editor/Debugger is still in it's firsts stages of development, with basic functionalities, but it is possible to write, compile and basic debugging with breakpoints, watch registers and global variables.
## Building SimulIDE:
Build dependencies:
- Qt5 dev packages
- Qt5Core
- Qt5Gui
- Qt5Xml
- Qt5Widgets
- Qt5Concurrent
- Qt5svg dev
- Qt5 Multimedia dev
- Qt5 Serialport dev
- Qt5 qmake
Once installed go to build_XX folder, then:
```
$ qmake
$ make
```
In folder build_XX/executables/SimulIDE_x.x.x you will find executable and all files needed to run SimulIDE.
## Running SimulIDE:
Run time dependencies:
- Qt5Core
- Qt5Gui
- Qt5Xml
- Qt5svg
- Qt5Widgets
- Qt5Concurrent
- Qt5 Multimedia
- Qt5 Multimedia Plugins
- Qt5 Serialport
No need for installation, place SimulIDE folder wherever you want and run the executable.
|