We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c91aa1f commit c6b4171Copy full SHA for c6b4171
Windows/python/README.md
@@ -0,0 +1,27 @@
1
+# SuperCAN plugin for python-can
2
+
3
+## Installation
4
5
+Assuming you have Visual Studio (Build Tools) installed, navigate
6
+to this directory and then run
7
8
+```console
9
+python -m pip install setuptools
10
+```
11
12
13
+python -m pip install .
14
15
16
+## Usage from Python
17
18
+```python
19
+import can
20
21
+e = can.Bus(
22
+ channel=0, # channel index (0-based)
23
+ filters=None,
24
+ interface="supercan-exclusive", # exclusive access to the channel
25
+ serial="12345678", # device serial
26
+ bitrate=500000)
27
0 commit comments