Hello
This is the beginning of the code the whole Sketch will be compiled properly with the Arduino IDE but with Platform IO No Problem compiling the Led Control Stuff but When I try to compile this with Platform IO I get the Error
src\main.cpp:24:44: error: no matching function for call to ‘LedControl::LedControl(int, int, int, int)’
LedControl lc=LedControl(DataIn,CLK,LOAD,1);
^
#include <ShiftRegister74HC595.h>
#include <ESP8266WiFi.h>
#include <WiFiUdp.h>
#include "time.h"
#include <NTPClient.h>
#include <FastLED.h>
#include<stdint.h>
#include <Ticker.h>
//We always have to include the library
#include "LedControl.h"
#define DataIn 16
#define CLK 14
#define LOAD 12
void ShowTime(time_t Value);
void hello();
LedControl lc=LedControl(DataIn,CLK,LOAD,1);