File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,17 +9,19 @@ This NFC sensor uses I2C to communicate.
99It creates the instance st25dv.
1010
1111It is then required to call begin API with the 2 pins to be used before accessing to the sensors, and optionally wire instance:
12- ` st25dv->begin(gpo_pin, lpd_pin); `
13- or
12+ ``` cpp
13+ st25dv-> begin (gpo_pin, lpd_pin);
1414```
15+ or
16+ ```cpp
1517 TwoWire MyWire(SDA_PIN, SCL_PIN);
1618 st25dv->begin(gpo_pin, lpd_pin, MyWire);
1719```
1820
1921
2022It is then possible to read/write NFC URI:
2123
22- ```
24+ ``` cpp
2325 int writeURI (String protocol, String uri, String info);
2426 String readURI();
2527```
@@ -30,6 +32,6 @@ It is then possible to read/write NFC URI:
3032You can find the source files at
3133https://github.com/stm32duino/ST25DV
3234
33- The ST25DV datasheets are available at
34- https://www.st.com/content/st_com/en/products/nfc/st25-nfc-rfid-tags-readers/st25-dynamic-nfc-tags/st25dv-i2c-series-dynamic-nfc-tags/st25dv04k.html
35- https://www.st.com/content/st_com/en/products/nfc/st25-nfc-rfid-tags-readers/st25-dynamic-nfc-tags/st25dv-i2c-series-dynamic-nfc-tags/st25dv64k.html
35+ The ST25DV datasheets are available at:
36+ * https://www.st.com/content/st_com/en/products/nfc/st25-nfc-rfid-tags-readers/st25-dynamic-nfc-tags/st25dv-i2c-series-dynamic-nfc-tags/st25dv04k.html
37+ * https://www.st.com/content/st_com/en/products/nfc/st25-nfc-rfid-tags-readers/st25-dynamic-nfc-tags/st25dv-i2c-series-dynamic-nfc-tags/st25dv64k.html
You can’t perform that action at this time.
0 commit comments