node-red-contrib-waveshare-shield-adda-11010
Loading...
Searching...
No Matches
dac8532.py
Go to the documentation of this file.
1
#!/usr/bin/env python3
2
# dac8532.py
3
#
4
# Copyright (c) 2020-2022 Spring City Solutions LLC and other contributors
5
# Licensed under the Apache License, Version 2.0
6
#
7
# Need to have the rpi.gpio and spidev python libraries installed
8
#
9
# For development, need to install the pytest system.
10
# sudo apt-get install python3-pytest
11
# See also tests/dac8532_test.py
12
# Running 'python -m pytest' should result in no errors
13
#
14
# For development, need to install the flake8 system.
15
# sudo apt-get install python3-flake8
16
# Running flake8 should report no serious problems,
17
# with E501 being ignored and excluding tests/
18
#
19
# Hardware Links:
20
#
21
# Board Manufacturer Store:
22
# https://www.waveshare.com/High-Precision-AD-DA-Board.htm
23
#
24
# Board Manufacturer Wiki:
25
# https://www.waveshare.com/wiki/High-Precision_AD/DA_Board
26
#
27
# Links for ADS1256 chip:
28
# https://www.ti.com/product/ADS1256
29
# https://www.ti.com/lit/gpn/ads1256
30
# Book "Fundamentals of Precision ADC Noise Analysis" https://www.ti.com/lit/pdf/slyy192
31
# Journal Series "How delta-sigma ADCs work" https://www.ti.com/lit/pdf/slyt423 https://www.ti.com/lit/pdf/slyt438
32
# App Note "Digital Filter Types in Delta-Sigma ADCs" https://www.ti.com/lit/pdf/sbaa230
33
#
34
# Link for LM285 chip, connected to the ADS1256:
35
# https://www.ti.com/product/LM285-2.5-N
36
# https://www.ti.com/lit/gpn/lm285-2.5-n
37
#
38
# Link for DAC8532 chip:
39
# https://www.ti.com/product/DAC8532
40
# https://www.ti.com/lit/gpn/dac8532
41
#
42
# Spring City Solutions Links:
43
#
44
# Spring City Solutions Node-RED project page:
45
# https://www.springcitysolutions.com/nodered
46
#
47
# Spring City Solutions page for this node:
48
# https://www.springcitysolutions.com/nodered-waveshare-adda-shield
49
#
50
# Spring City Solutions Node-RED project email:
51
# nodered@springcitysolutions.com
52
#
53
# Spring City Solutions Gitlab for this node:
54
# https://gitlab.com/SpringCitySolutionsLLC/waveshare-shield-adda-11010
55
#
56
# Patreon Page:
57
# https://www.patreon.com/springcitysolutions_nodered
58
#
59
# Software Links:
60
#
61
# Spring City Solutions Gitlab for this node:
62
# https://gitlab.com/SpringCitySolutionsLLC/waveshare-shield-adda-11010
63
#
64
# Doxygen docs for this node autogenerated by Gitlab CI/CD:
65
# https://springcitysolutionsllc.gitlab.io/waveshare-shield-adda-11010/index.html
66
#
67
# npmjs for this node:
68
# https://npmjs.org/package/node-red-contrib-waveshare-shield-adda-11010
69
#
70
# Node-RED flows for this node:
71
# https://flows.nodered.org/node/node-red-contrib-waveshare-shield-adda-11010
72
#
73
# Documentation Links:
74
#
75
# Gitlab wiki for this node (the master copy of list of links is here):
76
# https://gitlab.com/SpringCitySolutionsLLC/waveshare-shield-adda-11010/-/wikis/home
77
#
78
# Waveshare's libraries for this hardware:
79
# https://github.com/waveshare/High-Precision-AD-DA-Board
80
#
81
# Youtube video "How to set up":
82
# TODO
83
#
84
# Youtube video "How to use":
85
# TODO
86
#
87
# Youtube video "Testing Results":
88
# TODO
89
#
90
# Usage:
91
#
92
# dac8532.py "port A or B" "integer value 0 to 65535"
93
#
94
# Usage:
95
#
96
# Combine any of the following options:
97
#
98
# dac8532.py -t
99
# Returns a JSON of the register data for use with pytest or other testing
100
#
101
# ads1015.py --port "default A"
102
# Selects output port from one of the following options:
103
# A, B
104
#
105
# ads1015.py --output "default 32767"
106
# Sets the output to unsigned 16 bit integer from 0 to 65535
107
108
import
argparse
109
import
json
110
import
sys
111
112
import
RPi.GPIO
as
GPIO
113
import
spidev
114
115
cs = 23
116
117
register_data = dict([(
'control'
, 0x00), (
'data_h'
, 0x00), (
'data_l'
, 0x00)])
118
119
120
# Functions that do things.
121
122
123
def
output_json
():
124
"""Prints a JSON of the register_data for development and testing."""
125
print(json.dumps(register_data, sort_keys=
True
, indent=4))
126
127
128
def
parse_args
(raw_args):
129
"""Parses the args into ready to write register_data."""
130
# First parse the CLI.
131
parser = argparse.ArgumentParser()
132
parser.add_argument(
"--port"
, type=str, default=
"A"
,
133
help=
"Output Port: A, B default A"
)
134
parser.add_argument(
"--output"
, type=str, default=
"32767"
,
135
help=
"Output Voltage: 0 to 65535 default 32767"
)
136
parser.add_argument(
"-t"
,
"--test"
, action=
"store_true"
,
137
help=
"Print JSON of register_data"
)
138
args = parser.parse_args(raw_args)
139
140
# Process the control register
141
register_data[
'control'
] = 0x30
142
if
(args.port ==
"A"
):
143
register_data[
'control'
] = 0x30
144
if
(args.port ==
"B"
):
145
register_data[
'control'
] = 0x34
146
147
# Process the data registers
148
register_data[
'data_h'
] = 0x00
149
register_data[
'data_l'
] = 0x00
150
raw_output = int(args.output)
151
if
(raw_output < 0):
152
raw_output = 0
153
if
(raw_output > 65535):
154
raw_output = 65535
155
register_data[
'data_h'
] = raw_output >> 8
156
register_data[
'data_l'
] = raw_output & 0xFF
157
158
# Optionally output register state for development purposes
159
if
args.test:
160
output_json
()
161
exit()
162
163
164
# Functions that read or write device registers
165
166
167
def
write
():
168
"""Writes to the DAC using SPI"""
169
170
GPIO.setmode(GPIO.BCM)
171
GPIO.setwarnings(
False
)
172
GPIO.setup(cs, GPIO.OUT)
173
GPIO.output(cs, 1)
174
175
spi = spidev.SpiDev()
176
spi.open(0, 0)
177
spi.max_speed_hz = 20000
178
spi.mode = 0b01
179
180
GPIO.output(cs, 0)
181
spi.writebytes([register_data[
'control'
], register_data[
'data_h'
], register_data[
'data_l'
]])
182
GPIO.output(cs, 1)
183
184
185
# Convert CLI options to register_data
186
parse_args
(sys.argv[1:])
187
188
# Write to the DAC
189
write
()
dac8532.write
write()
Definition
dac8532.py:167
dac8532.output_json
output_json()
Definition
dac8532.py:123
dac8532.parse_args
parse_args(raw_args)
Definition
dac8532.py:128
dac8532.py
Generated on Sat Sep 14 2024 04:54:43 for node-red-contrib-waveshare-shield-adda-11010 by
1.11.0