Ошибка компиляции #313
Unanswered
ugra-86
asked this question in
Задавайте вопросы
Replies: 2 comments
-
Если брали последнюю версию в репозитории (а по предыдущим не подскажу) - то читайте (например в начале основного файла) какие версии ядра и фастлед требуются. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Спасибо, вроде бы на голую плату залилась прошивка, буду пробовать дальше |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Добрый день!
Помогите разобраться? Что компилятору не нравится? Третий день бьюсь (((
ESP8266 ver. 2.6.2
ESP32 ver. 1.0.4
FastLED by Daniel Garcia ver. 3.3.2
In file included from D:\Arduino\GyverPanelWiFi-master\firmware\GyverPanelWiFi_v1.13\a_def_hard.h:431:0,
from D:\Arduino\GyverPanelWiFi-master\firmware\GyverPanelWiFi_v1.13\GyverPanelWiFi_v1.13.ino:246:
D:\Program Files\Arduino\libraries\FastLED/FastLED.h:14:21: note: #pragma message: FastLED version 3.003.002
pragma message "FastLED version 3.003.002"
In file included from D:\Program Files\Arduino\libraries\FastLED/FastLED.h:65:0,
from D:\Arduino\GyverPanelWiFi-master\firmware\GyverPanelWiFi_v1.13\a_def_hard.h:431,
from D:\Arduino\GyverPanelWiFi-master\firmware\GyverPanelWiFi_v1.13\GyverPanelWiFi_v1.13.ino:246:
D:\Program Files\Arduino\libraries\FastLED/fastspi.h:130:23: note: #pragma message: No hardware SPI pins defined. All SPI access will default to bitbanged output
pragma message "No hardware SPI pins defined. All SPI access will default to bitbanged output"
In file included from D:\Arduino\GyverPanelWiFi-master\firmware\GyverPanelWiFi_v1.13\GyverPanelWiFi_v1.13.ino:246:0:
D:\Arduino\GyverPanelWiFi-master\firmware\GyverPanelWiFi_v1.13\GyverPanelWiFi_v1.13.ino: In function 'void startWiFi(uint32_t)':
GyverPanelWiFi_v1.13:794:24: error: 'class ESP8266WiFiClass' has no member named 'getHostname'
DEBUGLN(WiFi.getHostname());
^
D:\Arduino\GyverPanelWiFi-master\firmware\GyverPanelWiFi_v1.13\a_def_hard.h:471:39: note: in definition of macro 'DEBUGLN'
#define DEBUGLN(x) Serial.println(x)
^
D:\Arduino\GyverPanelWiFi-master\firmware\GyverPanelWiFi_v1.13\effects2.ino: In function 'void fireworksRoutine()':
effects2:76:312: error: 'LINEARBLEND_NOWRAP' was not declared in this scope
if (firework[i].the_figMode == 0) drawCircleBlend (firework[i].the_figX, firework[i].the_figY, firework[i].the_figSize, ColorFromPalette( myRainbow_p, firework[i].the_figHue, (firework[i].the_figSize > firework[i].the_figSizeMax / 2) ? effectBrightness - effectBrightnessFaded : effectBrightness, LINEARBLEND_NOWRAP));
^
effects2:77:312: error: 'LINEARBLEND_NOWRAP' was not declared in this scope
else if (firework[i].the_figMode == 1) drawSnowflakesBlend(firework[i].the_figX, firework[i].the_figY, firework[i].the_figSize, ColorFromPalette( myRainbow_p, firework[i].the_figHue, (firework[i].the_figSize > firework[i].the_figSizeMax / 2) ? effectBrightness - effectBrightnessFaded : effectBrightness, LINEARBLEND_NOWRAP));
^
exit status 1
'class ESP8266WiFiClass' has no member named 'getHostname'
Beta Was this translation helpful? Give feedback.
All reactions