You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15-1Lines changed: 15 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,7 @@ An Arduino library for sending and receiving data using CAN bus.
7
7
## Compatible Hardware
8
8
9
9
*[Microchip MCP2515](http://www.microchip.com/wwwproducts/en/en010406) based boards/shields
10
+
*[Espressif ESP32](http://espressif.com/en/products/hardware/esp32/overview)'s built-in [SJA1000](https://www.nxp.com/products/analog/interfaces/in-vehicle-network/can-transceiver-and-controllers/stand-alone-can-controller:SJA1000T) compatible CAN controller with an external 3.3V CAN transceiver
10
11
11
12
### Microchip MCP2515 wiring
12
13
@@ -25,6 +26,19 @@ An Arduino library for sending and receiving data using CAN bus.
25
26
26
27
**NOTE**: Logic level converters must be used for boards which operate at 3.3V.
27
28
29
+
### Espressif ESP32 wiring
30
+
31
+
Requires an external 3.3V CAN transceiver, such as a [TI SN65HVD230](http://www.ti.com/product/SN65HVD230).
32
+
33
+
| CAN transceiver | ESP32 |
34
+
| :-------------: | :---: |
35
+
| 3V3 | 3V3 |
36
+
| GND | GND |
37
+
| CTX | 5 |
38
+
| CRX | 4 |
39
+
40
+
`CTX` and `CRX` pins can be changed by using `CAN.setPins(rx, tx)`.
41
+
28
42
## Installation
29
43
30
44
### Using the Arduino IDE Library Manager
@@ -51,4 +65,4 @@ See [examples](examples) folder.
51
65
52
66
## License
53
67
54
-
This libary is [licensed](LICENSE) under the [MIT Licence](http://en.wikipedia.org/wiki/MIT_License).
68
+
This library is [licensed](LICENSE) under the [MIT Licence](http://en.wikipedia.org/wiki/MIT_License).
0 commit comments