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
|
// license:CC0
// copyright-holders:Couriersud
/*
* ne555_astable.c
*
*/
//! [ne555_example]
#include "netlist/devices/net_lib.h"
NETLIST_START(ne555_astable)
/*
* Astable ne555
*
*/
/* Standard stuff */
SOLVER(Solver, 48000)
ANALOG_INPUT(V5, 5) // 5V
/* Wiring up the ne555 */
// astable NE555, 1.13 ms period
RES(RA, 5000)
RES(RB, 3000)
CAP(C, 0.15e-6)
NE555(555)
NET_C(GND, 555.GND)
NET_C(V5, 555.VCC)
NET_C(V5, 555.RESET)
NET_C(RA.1, 555.VCC)
NET_C(RA.2, 555.DISCH)
NET_C(RB.1, 555.DISCH)
NET_C(RB.2, 555.TRIG)
NET_C(RB.2, 555.THRESH)
NET_C(555.TRIG, C.1)
NET_C(C.2, GND)
LOG(log2, C.1)
LOG(log3, 555.OUT)
NETLIST_END()
//! [ne555_example]
|