Hello, i am using Arduino Leonardo with ENC28J60 and i just want to get started, i uploaded simple sketch and saw this:
DATA: [===== ] 50.4% (used 1289 bytes from 2560 bytes)
PROGRAM: [========= ] 91.0% (used 26100 bytes from 28672 bytes)
so basically, I can’t do anything more than just 9% of memory and that’s my problem
my code:
#define BLYNK_NO_BUILTIN
#define BLYNK_NO_FLOAT
#include <UIPEthernet.h>
#include <BlynkSimpleUIPEthernet.h>
char auth[] = [token]
void setup()
{
Blynk.begin(auth);
}
void loop()
{
Blynk.run();
}