mirror of
https://github.com/HendrikRauh/dmx-interface.git
synced 2025-07-05 13:48:53 +00:00
Fix some bugs from merging and add second dmx interface
This commit is contained in:
parent
50c37dc80a
commit
e53f897aac
5 changed files with 150 additions and 121 deletions
|
@ -1 +1 @@
|
||||||
Subproject commit f65e981f9c4578f1b31e8a21be62c13c56665cbe
|
Subproject commit 5d9c42b531404ccfbcb14106d6312b03a166868a
|
|
@ -7,11 +7,16 @@
|
||||||
// uint8_t dmxDataStores[MAX_IDS][DMXCHANNELS + 1];
|
// uint8_t dmxDataStores[MAX_IDS][DMXCHANNELS + 1];
|
||||||
|
|
||||||
// Set up the DMX-Protocol
|
// Set up the DMX-Protocol
|
||||||
void DMXESPSerial::init(int pinSend = 19, int pinRecv = -1)
|
void DMXESPSerial::init(int pinSend = DMX_DEFAULT_TX, int pinRecv = DMX_DEFAULT_RX, HardwareSerial& port = DMX_DEFAULT_PORT)
|
||||||
{
|
{
|
||||||
sendPin = pinSend;
|
sendPin = pinSend;
|
||||||
recvPin = pinRecv;
|
recvPin = pinRecv;
|
||||||
SERIALPORT.begin(DMXSPEED, DMXFORMAT, recvPin, sendPin);
|
_Serial = &port;
|
||||||
|
_Serial->begin(DMXSPEED, DMXFORMAT, recvPin, sendPin);
|
||||||
|
Serial.print("Init DMX with pins (TX/RX): ");
|
||||||
|
Serial.print(sendPin);
|
||||||
|
Serial.print("/");
|
||||||
|
Serial.println(recvPin);
|
||||||
pinMode(sendPin, OUTPUT);
|
pinMode(sendPin, OUTPUT);
|
||||||
dmxStarted = true;
|
dmxStarted = true;
|
||||||
}
|
}
|
||||||
|
@ -28,6 +33,14 @@ uint8_t DMXESPSerial::read(int channel)
|
||||||
channel = DMXCHANNELS;
|
channel = DMXCHANNELS;
|
||||||
return (dmxDataStore[channel]);
|
return (dmxDataStore[channel]);
|
||||||
}
|
}
|
||||||
|
uint8_t* DMXESPSerial::readAll()
|
||||||
|
{
|
||||||
|
if (dmxStarted == false)
|
||||||
|
init();
|
||||||
|
|
||||||
|
return (&dmxDataStore[1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// Function to send DMX data
|
// Function to send DMX data
|
||||||
void DMXESPSerial::write(int channel, uint8_t value)
|
void DMXESPSerial::write(int channel, uint8_t value)
|
||||||
|
@ -40,17 +53,13 @@ void DMXESPSerial::write(int channel, uint8_t value)
|
||||||
channel = 1;
|
channel = 1;
|
||||||
if (channel > DMXCHANNELS)
|
if (channel > DMXCHANNELS)
|
||||||
channel = DMXCHANNELS;
|
channel = DMXCHANNELS;
|
||||||
if (value < 0)
|
|
||||||
value = 0;
|
|
||||||
if (value > 255)
|
|
||||||
value = 255;
|
|
||||||
|
|
||||||
dmxDataStore[channel] = value;
|
dmxDataStore[channel] = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
void DMXESPSerial::end()
|
void DMXESPSerial::end()
|
||||||
{
|
{
|
||||||
SERIALPORT.end();
|
_Serial->end();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Function to update the DMX bus
|
// Function to update the DMX bus
|
||||||
|
@ -58,17 +67,17 @@ void DMXESPSerial::update()
|
||||||
{
|
{
|
||||||
// Send break
|
// Send break
|
||||||
digitalWrite(sendPin, HIGH);
|
digitalWrite(sendPin, HIGH);
|
||||||
SERIALPORT.begin(BREAKSPEED, BREAKFORMAT, recvPin, sendPin);
|
_Serial->begin(BREAKSPEED, BREAKFORMAT, recvPin, sendPin);
|
||||||
SERIALPORT.write(0);
|
_Serial->write(0);
|
||||||
SERIALPORT.flush();
|
_Serial->flush();
|
||||||
delay(1);
|
delay(1);
|
||||||
SERIALPORT.end();
|
_Serial->end();
|
||||||
|
|
||||||
// send data
|
// send data
|
||||||
SERIALPORT.begin(DMXSPEED, DMXFORMAT, recvPin, sendPin);
|
_Serial->begin(DMXSPEED, DMXFORMAT, recvPin, sendPin);
|
||||||
digitalWrite(sendPin, LOW);
|
digitalWrite(sendPin, LOW);
|
||||||
SERIALPORT.write(dmxDataStore, DMXCHANNELS);
|
_Serial->write(dmxDataStore, DMXCHANNELS);
|
||||||
SERIALPORT.flush();
|
_Serial->flush();
|
||||||
delay(1);
|
delay(1);
|
||||||
SERIALPORT.end();
|
_Serial->end();
|
||||||
}
|
}
|
15
src/ESPDMX.h
15
src/ESPDMX.h
|
@ -1,4 +1,5 @@
|
||||||
#include <inttypes.h>
|
#include <inttypes.h>
|
||||||
|
#include <HardwareSerial.h>
|
||||||
|
|
||||||
#ifndef ESPDMX_h
|
#ifndef ESPDMX_h
|
||||||
#define ESPDMX_h
|
#define ESPDMX_h
|
||||||
|
@ -7,7 +8,9 @@
|
||||||
#define DMXFORMAT SERIAL_8N2
|
#define DMXFORMAT SERIAL_8N2
|
||||||
#define BREAKSPEED 83333
|
#define BREAKSPEED 83333
|
||||||
#define BREAKFORMAT SERIAL_8N1
|
#define BREAKFORMAT SERIAL_8N1
|
||||||
#define SERIALPORT Serial0
|
#define DMX_DEFAULT_PORT Serial0
|
||||||
|
#define DMX_DEFAULT_TX 21
|
||||||
|
#define DMX_DEFAULT_RX 33
|
||||||
#define DMXCHANNELS 512
|
#define DMXCHANNELS 512
|
||||||
|
|
||||||
class DMXESPSerial
|
class DMXESPSerial
|
||||||
|
@ -15,14 +18,20 @@ class DMXESPSerial
|
||||||
public:
|
public:
|
||||||
int sendPin;
|
int sendPin;
|
||||||
int recvPin;
|
int recvPin;
|
||||||
|
HardwareSerial *port;
|
||||||
bool dmxStarted;
|
bool dmxStarted;
|
||||||
uint8_t dmxDataStore[DMXCHANNELS + 1];
|
uint8_t dmxDataStore[DMXCHANNELS + 1];
|
||||||
|
|
||||||
void init(int pinSend, int pinRecv);
|
void init(int pinSend, int pinRecv, HardwareSerial& port);
|
||||||
uint8_t read(int Channel);
|
uint8_t read(int channel);
|
||||||
|
uint8_t* readAll();
|
||||||
void write(int channel, uint8_t value);
|
void write(int channel, uint8_t value);
|
||||||
void update();
|
void update();
|
||||||
void end();
|
void end();
|
||||||
|
|
||||||
|
private:
|
||||||
|
// Member variables
|
||||||
|
HardwareSerial* _Serial;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
211
src/main.cpp
211
src/main.cpp
|
@ -52,15 +52,17 @@ void IRAM_ATTR onTimer() { //Defining Inerrupt function with IRAM_ATTR for
|
||||||
#define ETH_SPI_CLOCK_MHZ 25
|
#define ETH_SPI_CLOCK_MHZ 25
|
||||||
byte mac[6] = {0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED};
|
byte mac[6] = {0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED};
|
||||||
|
|
||||||
enum ethTypes {TYP_AP = 1, TYP_STA = 2, TYP_ETH = 3}; // to be changed to Raffaels(TM) enum
|
|
||||||
ethTypes ethType;
|
|
||||||
|
|
||||||
AsyncWebServer server(80);
|
AsyncWebServer server(80);
|
||||||
|
|
||||||
ArtnetWiFi artnet;
|
ArtnetWiFi artnet;
|
||||||
|
|
||||||
const uint16_t size = 512;
|
String broadcastIp;
|
||||||
uint8_t data[size];
|
uint8_t universe1;
|
||||||
|
uint8_t universe2;
|
||||||
|
Direction direction1;
|
||||||
|
Direction direction2;
|
||||||
|
//const uint16_t size = 512;
|
||||||
|
//uint8_t data[DMXCHANNELS];
|
||||||
|
|
||||||
void ledBlink(int ms) {
|
void ledBlink(int ms) {
|
||||||
if(timer == NULL) {
|
if(timer == NULL) {
|
||||||
|
@ -98,11 +100,21 @@ void setup()
|
||||||
|
|
||||||
config.begin("dmx", true);
|
config.begin("dmx", true);
|
||||||
|
|
||||||
uint8_t universe1 = config.getUChar("universe-1", 1);
|
universe1 = config.getUChar("universe-1", 1);
|
||||||
uint8_t universe2 = config.getUChar("universe-2", 1);
|
universe2 = config.getUChar("universe-2", 1);
|
||||||
|
|
||||||
Direction direction1 = static_cast<Direction>(config.getUInt("direction-1", 0));
|
direction1 = static_cast<Direction>(config.getUInt("direction-1", 0));
|
||||||
Direction direction2 = static_cast<Direction>(config.getUInt("direction-2", 1));
|
direction2 = static_cast<Direction>(config.getUInt("direction-2", 1));
|
||||||
|
|
||||||
|
Serial.print("Port A: Universe ");
|
||||||
|
Serial.print(universe1);
|
||||||
|
Serial.print(" ");
|
||||||
|
Serial.println((direction1==Input)?"DMX -> Art-Net":"Art-Net -> DMX");
|
||||||
|
|
||||||
|
Serial.print("Port B: Universe ");
|
||||||
|
Serial.print(universe2);
|
||||||
|
Serial.print(" ");
|
||||||
|
Serial.println((direction2==Input)?"DMX -> Art-Net":"Art-Net -> DMX");
|
||||||
|
|
||||||
Connection connection = static_cast<Connection>(config.getUInt("connection", WiFiAP));
|
Connection connection = static_cast<Connection>(config.getUInt("connection", WiFiAP));
|
||||||
IpMethod ipMethod = static_cast<IpMethod>(config.getUInt("ip-method"), Static);
|
IpMethod ipMethod = static_cast<IpMethod>(config.getUInt("ip-method"), Static);
|
||||||
|
@ -116,11 +128,12 @@ void setup()
|
||||||
String ssid = config.getString("ssid", hostname);
|
String ssid = config.getString("ssid", hostname);
|
||||||
String pwd = config.getString("pwd", "mbgmbgmbg");
|
String pwd = config.getString("pwd", "mbgmbgmbg");
|
||||||
|
|
||||||
|
// Default IP as defined in standard https://art-net.org.uk/downloads/art-net.pdf, page 13
|
||||||
IPAddress defaultIp(2, mac[3], mac[4], mac[5]);
|
IPAddress defaultIp(2, mac[3], mac[4], mac[5]);
|
||||||
IPAddress ip = config.getUInt("ip", defaultIp);
|
IPAddress ip = config.getUInt("ip", defaultIp);
|
||||||
IPAddress defaultSubnet(255, 255, 255, 0);
|
IPAddress defaultSubnet(255, 0, 0, 0);
|
||||||
IPAddress subnet = config.getUInt("subnet", defaultSubnet);
|
IPAddress subnet = config.getUInt("subnet", defaultSubnet);
|
||||||
IPAddress defaultGateway(192, 168, 1, 1);
|
IPAddress defaultGateway(2, 0, 0, 1);
|
||||||
IPAddress gateway = config.getUInt("gateway", defaultGateway);
|
IPAddress gateway = config.getUInt("gateway", defaultGateway);
|
||||||
|
|
||||||
config.end();
|
config.end();
|
||||||
|
@ -128,10 +141,20 @@ void setup()
|
||||||
// wait for serial monitor
|
// wait for serial monitor
|
||||||
delay(5000);
|
delay(5000);
|
||||||
|
|
||||||
|
// Button
|
||||||
|
pinMode(PIN_BUTTON,INPUT_PULLUP);
|
||||||
|
if(digitalRead(PIN_BUTTON) == LOW){
|
||||||
|
ledBlink(100);
|
||||||
|
delay(2000);
|
||||||
|
Serial.println("Start AP-Mode");
|
||||||
|
connection = WiFiAP;
|
||||||
|
}
|
||||||
|
|
||||||
switch (connection)
|
switch (connection)
|
||||||
{
|
{
|
||||||
case WiFiSta:
|
case WiFiSta:
|
||||||
Serial.println("Initialize as WiFi-Station");
|
Serial.println("Initialize as WiFi Station");
|
||||||
|
WiFi.setHostname(hostname);
|
||||||
WiFi.begin(ssid, pwd);
|
WiFi.begin(ssid, pwd);
|
||||||
if (ipMethod == Static)
|
if (ipMethod == Static)
|
||||||
{
|
{
|
||||||
|
@ -142,95 +165,61 @@ void setup()
|
||||||
Serial.print(".");
|
Serial.print(".");
|
||||||
delay(500);
|
delay(500);
|
||||||
}
|
}
|
||||||
|
broadcastIp = String(WiFi.broadcastIP().toString().c_str());
|
||||||
Serial.println("");
|
Serial.println("");
|
||||||
Serial.print("WiFi connected, IP = ");
|
Serial.print("WiFi connected, IP = ");
|
||||||
Serial.println(WiFi.localIP());
|
Serial.println(WiFi.localIP());
|
||||||
|
Serial.print("MAC address: ");
|
||||||
|
Serial.println(WiFi.macAddress());
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case WiFiAP:
|
case Ethernet: {
|
||||||
Serial.println("Initialize as WiFi-Access-Point");
|
Serial.println("Initialize as ETH");
|
||||||
WiFi.softAP(ssid, pwd);
|
ESP32_W5500_onEvent();
|
||||||
WiFi.softAPConfig(ip, gateway, subnet);
|
|
||||||
Serial.print("WiFi AP enabled, IP = ");
|
|
||||||
Serial.println(WiFi.softAPIP());
|
|
||||||
break;
|
|
||||||
|
|
||||||
case Ethernet:
|
if (ETH.begin( ETH_MISO, ETH_MOSI, ETH_SCK, ETH_SS, ETH_INT, ETH_SPI_CLOCK_MHZ, ETH_SPI_HOST, mac )) { // Dynamic IP setup
|
||||||
// TODO: Initialize Interface connection type - to be changed to Raffaels(TM) enum
|
}else{
|
||||||
ethType = TYP_ETH;
|
Serial.println("Failed to configure Ethernet");
|
||||||
|
|
||||||
// Button
|
|
||||||
pinMode(PIN_BUTTON,INPUT_PULLUP);
|
|
||||||
if(digitalRead(PIN_BUTTON) == LOW){
|
|
||||||
ledBlink(100);
|
|
||||||
delay(2000);
|
|
||||||
Serial.println("Start AP-Mode");
|
|
||||||
ethType = TYP_AP;
|
|
||||||
}
|
}
|
||||||
|
ETH.setHostname(hostname);
|
||||||
|
|
||||||
switch (ethType)
|
//ESP32_W5500_waitForConnect();
|
||||||
{
|
uint8_t timeout = 5; // in s
|
||||||
case TYP_STA:
|
Serial.print("Wait for connect");
|
||||||
Serial.println("Initialize as WiFi-STA");
|
while (!ESP32_W5500_eth_connected && timeout > 0) {
|
||||||
WiFi.begin(ssid, pwd);
|
delay(1000);
|
||||||
WiFi.setHostname(hostname);
|
timeout--;
|
||||||
WiFi.config(ip, gateway, subnet);
|
Serial.print(".");
|
||||||
while (WiFi.status() != WL_CONNECTED) {
|
}
|
||||||
Serial.print(".");
|
Serial.println();
|
||||||
delay(500);
|
if (ESP32_W5500_eth_connected) {
|
||||||
}
|
Serial.println("DHCP OK!");
|
||||||
Serial.print("WiFi connected, IP = ");
|
} else {
|
||||||
Serial.println(WiFi.localIP());
|
Serial.println("Set static IP");
|
||||||
Serial.print("MAC address: ");
|
ETH.config(ip, gateway, subnet);
|
||||||
Serial.println(WiFi.macAddress());
|
}
|
||||||
break;
|
broadcastIp = ETH.broadcastIP().toString();
|
||||||
case TYP_ETH:{
|
|
||||||
Serial.println("Initialize as ETH");
|
|
||||||
ESP32_W5500_onEvent();
|
|
||||||
|
|
||||||
|
Serial.print("Local IP : ");
|
||||||
if (ETH.begin( ETH_MISO, ETH_MOSI, ETH_SCK, ETH_SS, ETH_INT, ETH_SPI_CLOCK_MHZ, ETH_SPI_HOST, mac )) { // Dynamic IP setup
|
Serial.println(ETH.localIP());
|
||||||
}else{
|
Serial.print("Subnet Mask : ");
|
||||||
Serial.println("Failed to configure Ethernet");
|
Serial.println(ETH.subnetMask());
|
||||||
}
|
Serial.print("Gateway IP : ");
|
||||||
ETH.setHostname(hostname);
|
Serial.println(ETH.gatewayIP());
|
||||||
|
Serial.print("DNS Server : ");
|
||||||
//ESP32_W5500_waitForConnect();
|
Serial.println(ETH.dnsIP());
|
||||||
uint8_t timeout = 5; // in s
|
Serial.print("MAC address : ");
|
||||||
Serial.print("Wait for connect");
|
Serial.println(ETH.macAddress());
|
||||||
while (!ESP32_W5500_eth_connected && timeout > 0) {
|
Serial.println("Ethernet Successfully Initialized");
|
||||||
delay(1000);
|
break;
|
||||||
timeout--;
|
|
||||||
Serial.print(".");
|
|
||||||
}
|
|
||||||
Serial.println();
|
|
||||||
if (ESP32_W5500_eth_connected) {
|
|
||||||
Serial.println("DHCP OK!");
|
|
||||||
} else {
|
|
||||||
Serial.println("Set static IP");
|
|
||||||
ETH.config(ip, gateway, subnet);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
Serial.print("Local IP : ");
|
|
||||||
Serial.println(ETH.localIP());
|
|
||||||
Serial.print("Subnet Mask : ");
|
|
||||||
Serial.println(ETH.subnetMask());
|
|
||||||
Serial.print("Gateway IP : ");
|
|
||||||
Serial.println(ETH.gatewayIP());
|
|
||||||
Serial.print("DNS Server : ");
|
|
||||||
Serial.println(ETH.dnsIP());
|
|
||||||
Serial.print("MAC address : ");
|
|
||||||
Serial.println(ETH.macAddress());
|
|
||||||
|
|
||||||
Serial.println("Ethernet Successfully Initialized");
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
Serial.println("Initialize as WiFi-AP");
|
Serial.println("Initialize as WiFi AccessPoint");
|
||||||
WiFi.softAP(ssid, pwd);
|
|
||||||
WiFi.softAPsetHostname(hostname);
|
WiFi.softAPsetHostname(hostname);
|
||||||
WiFi.softAPConfig(ip, gateway, subnet);
|
WiFi.softAP(ssid, pwd);
|
||||||
|
// AP always with DHCP
|
||||||
|
//WiFi.softAPConfig(ip, gateway, subnet);
|
||||||
|
broadcastIp = WiFi.softAPBroadcastIP().toString();
|
||||||
Serial.print("WiFi AP enabled, IP = ");
|
Serial.print("WiFi AP enabled, IP = ");
|
||||||
Serial.println(WiFi.softAPIP());
|
Serial.println(WiFi.softAPIP());
|
||||||
Serial.print("MAC address: ");
|
Serial.print("MAC address: ");
|
||||||
|
@ -238,30 +227,41 @@ void setup()
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
// Initialize DMX ports
|
// Initialize DMX ports
|
||||||
Serial.println("Initialize DMX...");
|
Serial.println("Initialize DMX...");
|
||||||
dmx1.init(19, -1);
|
dmx1.init(21, 33, Serial0);
|
||||||
|
dmx2.init(17, 18, Serial1);
|
||||||
|
|
||||||
// Initialize Art-Net
|
// Initialize Art-Net
|
||||||
Serial.println("Initialize Art-Net...");
|
Serial.println("Initialize Art-Net...");
|
||||||
artnet.begin();
|
artnet.begin();
|
||||||
|
|
||||||
// if Artnet packet comes to this universe, this function is called
|
// if Artnet packet comes to this universe, this function is called
|
||||||
artnet.subscribeArtDmxUniverse(universe, [&](const uint8_t *data, uint16_t size, const ArtDmxMetadata &metadata, const ArtNetRemoteInfo &remote)
|
if (direction1 == Output) {
|
||||||
{
|
artnet.subscribeArtDmxUniverse(universe1, [&](const uint8_t *data, uint16_t size, const ArtDmxMetadata &metadata, const ArtNetRemoteInfo &remote)
|
||||||
for (size_t i = 0; i < size; ++i)
|
|
||||||
{
|
{
|
||||||
dmx1.write((i + 1), data[i]);
|
for (size_t i = 0; i < size; ++i)
|
||||||
}
|
{
|
||||||
|
dmx1.write((i + 1), data[i]);
|
||||||
|
}
|
||||||
|
dmx1.update();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
dmx1.update();
|
if (direction2 == Output) {
|
||||||
});
|
artnet.subscribeArtDmxUniverse(universe2, [&](const uint8_t *data, uint16_t size, const ArtDmxMetadata &metadata, const ArtNetRemoteInfo &remote)
|
||||||
|
{
|
||||||
|
for (size_t i = 0; i < size; ++i)
|
||||||
|
{
|
||||||
|
dmx2.write((i + 1), data[i]);
|
||||||
|
}
|
||||||
|
|
||||||
|
dmx2.update();
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
// if Artnet packet comes, this function is called to every universe
|
// if Artnet packet comes, this function is called to every universe
|
||||||
artnet.subscribeArtDmx([&](const uint8_t *data, uint16_t size, const ArtDmxMetadata &metadata, const ArtNetRemoteInfo &remote) {});
|
//artnet.subscribeArtDmx([&](const uint8_t *data, uint16_t size, const ArtDmxMetadata &metadata, const ArtNetRemoteInfo &remote) {});
|
||||||
|
|
||||||
if (!SPIFFS.begin(true))
|
if (!SPIFFS.begin(true))
|
||||||
{
|
{
|
||||||
|
@ -302,4 +302,15 @@ void loop()
|
||||||
{
|
{
|
||||||
// check if artnet packet has come and execute callback
|
// check if artnet packet has come and execute callback
|
||||||
artnet.parse();
|
artnet.parse();
|
||||||
|
|
||||||
|
// Receive Callback/INT currently not implemented
|
||||||
|
/*if (direction1 == Input) {
|
||||||
|
artnet.setArtDmxData(dmx1.readAll(), DMXCHANNELS);
|
||||||
|
artnet.streamArtDmxTo(broadcastIp, universe1);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (direction2 == Input) {
|
||||||
|
artnet.setArtDmxData(dmx2.readAll(), DMXCHANNELS);
|
||||||
|
artnet.streamArtDmxTo(broadcastIp, universe2);
|
||||||
|
}*/
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <ESPAsyncWebServer.h>
|
#include <AsyncWebServer_ESP32_W5500.h>
|
||||||
#include <ESPDMX.h>
|
#include <ESPDMX.h>
|
||||||
#include <Preferences.h>
|
#include <Preferences.h>
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue