Open
Description
While trying pn532 with hsu the websocket won't get connected with response "disconnected" but when using pn532 with spi the websocket won't respond.
When using the same code with code pn532 remove it works. Is there a conflict in serial input?
Is there any way it can be fixed.
Tried multiple types of packages for pn532 same result. Tried on esp8266 and esp32 same result.
#include <WiFiManager.h>
#include <HTTPClient.h>
#include <ArduinoJson.h>
#include <Wire.h>
#include <SPI.h>
#include <Adafruit_PN532.h>
#include <WebSocketsClient.h>
#include <SPIFFS.h>
#include <mDash.h>
#define PN532_SCK (18)
#define PN532_MOSI (19)
#define PN532_SS (5)
#define PN532_MISO (23)
packages and pins I am using.