Giter Club home page Giter Club logo

Comments (8)

Protonerd avatar Protonerd commented on August 19, 2024

Can you please switch off verbose, it's impossible to find the real error amidst all the text.

from fx-saberos.

Tam-Koowan avatar Tam-Koowan commented on August 19, 2024

J'ai enfin réussi à téléversé, mais ça ne fonctionne pas :(
Il y a une manipulation à faire pour la première utilisation ?

from fx-saberos.

DRagonenko avatar DRagonenko commented on August 19, 2024

библиотеки установи нормально

from fx-saberos.

Protonerd avatar Protonerd commented on August 19, 2024

Closing as no update for a long time.

from fx-saberos.

Tam-Koowan avatar Tam-Koowan commented on August 19, 2024

Thank you for closing!
Nobody helps so I have nothing to say that's why I did not answer!

from fx-saberos.

Vulkan1 avatar Vulkan1 commented on August 19, 2024

Gam you need to turn off Verbose, otherwise they can’t help you. What you sent them was a needle in a hay stack. They were waiting for your response with the new problem log.

from fx-saberos.

Tam-Koowan avatar Tam-Koowan commented on August 19, 2024

I'm fine but I make a comment in the setting? and when I uncheck Compilation and or download there is nothing more details about the error

from fx-saberos.

Tam-Koowan avatar Tam-Koowan commented on August 19, 2024

I check only "default" and I have this as a mistake?

Arduino : 1.6.8 (Windows 7), Carte : "Arduino Leonardo"

In file included from D:\Documents\Arduino\FX-SaberOS\FX-SaberOS.ino:37:0:

sketch\Config.h:235:9: warning: extra tokens at end of #else directive

#else if DIYINO_STARDUST

     ^

sketch\Config.h:258:7: warning: extra tokens at end of #else directive

#else if DIYINO_STARDUST

   ^

sketch\Config.h:273:7: warning: extra tokens at end of #else directive

#else if DIYINO_STARDUST

   ^

D:\Documents\Arduino\FX-SaberOS\FX-SaberOS.ino:122:7: warning: extra tokens at end of #else directive

#else if #ifdef DIYINO_STARDUST

   ^

D:\Documents\Arduino\FX-SaberOS\FX-SaberOS.ino:1036:13: warning: extra tokens at end of #else directive

   #else if STAR_LED

         ^

FX-SaberOS:23: error: 'DFPLAYER_TX' was not declared in this scope

SoftwareSerial mp3player(DFPLAYER_TX, DFPLAYER_RX); // TX, RX

                      ^

FX-SaberOS:23: error: 'DFPLAYER_RX' was not declared in this scope

SoftwareSerial mp3player(DFPLAYER_TX, DFPLAYER_RX); // TX, RX

                                   ^

In file included from D:\Documents\Arduino\FX-SaberOS\FX-SaberOS.ino:28:0:

DFPlayer.h:133: error: 'DFPlayerSerial' does not name a type

inline DFPlayerSerial * getSerial() {

     ^

DFPlayer.h:626: error: 'DFPlayerSerial' does not name a type

DFPlayerSerial * mp3Serial;

^

D:\Documents\Arduino\libraries\DFPlayer/DFPlayer.h: In destructor 'DFPlayer::~DFPlayer()':

DFPlayer.h:128: error: 'mp3Serial' was not declared in this scope

if (NULL != mp3Serial) {

           ^

DFPlayer.h:129: error: 'class DFPlayer' has no member named 'mp3Serial'

delete this->mp3Serial;

             ^

D:\Documents\Arduino\libraries\DFPlayer/DFPlayer.h: In member function 'void DFPlayer::setSerial(uint8_t, uint8_t, bool)':

DFPlayer.h:144: error: 'class DFPlayer' has no member named 'mp3Serial'

if (NULL != this->mp3Serial) {

                 ^

DFPlayer.h:145: error: 'class DFPlayer' has no member named 'mp3Serial'

delete this->mp3Serial;

             ^

DFPlayer.h:148: error: 'class DFPlayer' has no member named 'mp3Serial'

this->mp3Serial = new DFPlayerSerial(receivePin, transmitPin);

     ^

DFPlayer.h:148: error: expected type-specifier before 'DFPlayerSerial'

this->mp3Serial = new DFPlayerSerial(receivePin, transmitPin);

                     ^

DFPlayer.h:150: error: 'class DFPlayer' has no member named 'mp3Serial'

this->mp3Serial->begin(9600);

     ^

DFPlayer.h:152: error: 'class DFPlayer' has no member named 'mp3Serial'

while (not this->mp3Serial->available()) {

                ^

D:\Documents\Arduino\libraries\DFPlayer/DFPlayer.h: In member function 'uint8_t DFPlayer::updateFifoCount()':

DFPlayer.h:185: error: 'mp3Serial' was not declared in this scope

this->fifoCount = mp3Serial->available();

                 ^

D:\Documents\Arduino\libraries\DFPlayer/DFPlayer.h: In member function 'void DFPlayer::send()':

DFPlayer.h:261: error: 'class DFPlayer' has no member named 'mp3Serial'

this->mp3Serial->write(this->sendBuffer, DFPLAYER_BUFFER_LENGTH);

     ^

D:\Documents\Arduino\libraries\DFPlayer/DFPlayer.h: In member function 'void DFPlayer::receive()':

DFPlayer.h:274: error: 'class DFPlayer' has no member named 'mp3Serial'

while (not isNoReceiveBit() and this->mp3Serial->available()

                                     ^

DFPlayer.h:275: error: 'class DFPlayer' has no member named 'mp3Serial'

 and (this->mp3Serial->available() % DFPLAYER_BUFFER_LENGTH == 0)

            ^

DFPlayer.h:277: error: 'mp3Serial' was not declared in this scope

mp3Serial->readBytesUntil(0xEF, this->recvBuffer,

^

DFPlayer.h:286: error: 'class DFPlayer' has no member named 'mp3Serial'

this->fifoCount = this->mp3Serial->available();

                       ^

D:\Documents\Arduino\libraries\DFPlayer/DFPlayer.h: In member function 'uint16_t DFPlayer::getCurrentTrack()':

DFPlayer.h:359: error: 'class DFPlayer' has no member named 'mp3Serial'

while (this->mp3Serial->available()

            ^

DFPlayer.h:360: error: 'class DFPlayer' has no member named 'mp3Serial'

and (this->mp3Serial->available() % DFPLAYER_BUFFER_LENGTH == 0)) {

           ^

D:\Documents\Arduino\FX-SaberOS\FX-SaberOS.ino: In function 'void setup()':

FX-SaberOS:535: error: 'PCMSK2' was not declared in this scope

PCMSK2 |= bit (PCINT20); // pin 4 Aux button

^

In file included from sketch\DFPlayer_Mini_Mp3.h:42:0,

             from D:\Documents\Arduino\FX-SaberOS\FX-SaberOS.ino:22:

FX-SaberOS:535: error: 'PCINT20' was not declared in this scope

PCMSK2 |= bit (PCINT20); // pin 4 Aux button

              ^

C:\Users\Chris\AppData\Local\Arduino15\packages\arduino\hardware\avr\1.6.20\cores\arduino/Arduino.h:123:25: note: in definition of macro 'bit'

#define bit(b) (1UL << (b))

                     ^

D:\Documents\Arduino\FX-SaberOS\FX-SaberOS.ino: In function 'void SinglePlay_Sound(uint8_t)':

FX-SaberOS:1359: error: 'dfplayer' was not declared in this scope

dfplayer.playPhysicalTrack(track);

^

D:\Documents\Arduino\FX-SaberOS\FX-SaberOS.ino: In function 'void LoopPlay_Sound(uint8_t)':

FX-SaberOS:1367: error: 'dfplayer' was not declared in this scope

dfplayer.playSingleLoop(track);

^

D:\Documents\Arduino\FX-SaberOS\FX-SaberOS.ino: In function 'void Set_Volume()':

FX-SaberOS:1375: error: 'dfplayer' was not declared in this scope

dfplayer.setVolume(storage.volume); // Too Slow: we'll change volume on exit

^

D:\Documents\Arduino\FX-SaberOS\FX-SaberOS.ino: In function 'void Set_Loop_Playback()':

FX-SaberOS:1384: error: 'dfplayer' was not declared in this scope

dfplayer.setSingleLoop(true);;

^

D:\Documents\Arduino\FX-SaberOS\FX-SaberOS.ino: In function 'void InitDFPlayer()':

FX-SaberOS:1397: error: 'dfplayer' was not declared in this scope

dfplayer.setSerial(DFPLAYER_TX, DFPLAYER_RX);

^

D:\Documents\Arduino\FX-SaberOS\FX-SaberOS.ino: In function 'void Pause_Sound()':

FX-SaberOS:1411: error: 'dfplayer' was not declared in this scope

dfplayer.pause();

^

D:\Documents\Arduino\FX-SaberOS\FX-SaberOS.ino: In function 'void Resume_Sound()':

FX-SaberOS:1419: error: 'dfplayer' was not declared in this scope

dfplayer.play();

^

In file included from sketch\DFPlayer_Mini_Mp3.h:42:0,

             from D:\Documents\Arduino\FX-SaberOS\FX-SaberOS.ino:22:

D:\Documents\Arduino\FX-SaberOS\FX-SaberOS.ino: In function 'void sleepNow()':

FX-SaberOS:1439: error: 'BODS' was not declared in this scope

 MCUCR = bit (BODS) | bit (BODSE);

              ^

C:\Users\Chris\AppData\Local\Arduino15\packages\arduino\hardware\avr\1.6.20\cores\arduino/Arduino.h:123:25: note: in definition of macro 'bit'

#define bit(b) (1UL << (b))

                     ^

FX-SaberOS:1439: error: 'BODSE' was not declared in this scope

 MCUCR = bit (BODS) | bit (BODSE);

                           ^

C:\Users\Chris\AppData\Local\Arduino15\packages\arduino\hardware\avr\1.6.20\cores\arduino/Arduino.h:123:25: note: in definition of macro 'bit'

#define bit(b) (1UL << (b))

                     ^

FX-SaberOS:1442: error: 'PCIF1' was not declared in this scope

 PCIFR  |= bit (PCIF0) | bit (PCIF1) | bit (PCIF2);   // clear any outstanding interrupts

                              ^

C:\Users\Chris\AppData\Local\Arduino15\packages\arduino\hardware\avr\1.6.20\cores\arduino/Arduino.h:123:25: note: in definition of macro 'bit'

#define bit(b) (1UL << (b))

                     ^

FX-SaberOS:1442: error: 'PCIF2' was not declared in this scope

 PCIFR  |= bit (PCIF0) | bit (PCIF1) | bit (PCIF2);   // clear any outstanding interrupts

                                            ^

C:\Users\Chris\AppData\Local\Arduino15\packages\arduino\hardware\avr\1.6.20\cores\arduino/Arduino.h:123:25: note: in definition of macro 'bit'

#define bit(b) (1UL << (b))

                     ^

FX-SaberOS:1443: error: 'PCIE1' was not declared in this scope

 PCICR  |= bit (PCIE0) | bit (PCIE1) | bit (PCIE2);   // enable pin change interrupts

                              ^

C:\Users\Chris\AppData\Local\Arduino15\packages\arduino\hardware\avr\1.6.20\cores\arduino/Arduino.h:123:25: note: in definition of macro 'bit'

#define bit(b) (1UL << (b))

                     ^

FX-SaberOS:1443: error: 'PCIE2' was not declared in this scope

 PCICR  |= bit (PCIE0) | bit (PCIE1) | bit (PCIE2);   // enable pin change interrupts

                                            ^

C:\Users\Chris\AppData\Local\Arduino15\packages\arduino\hardware\avr\1.6.20\cores\arduino/Arduino.h:123:25: note: in definition of macro 'bit'

#define bit(b) (1UL << (b))

                     ^

Plusieurs bibliothèque trouvées pour "DFPlayer.h"
Utilisé : D:\Documents\Arduino\libraries\DFPlayer
Non utilisé : D:\Documents\Arduino\libraries\LightSaberOS
Non utilisé : D:\Documents\Arduino\libraries\FX-SaberOS
Non utilisé : D:\Documents\Arduino\libraries\DFPlayer_LSOS
Plusieurs bibliothèque trouvées pour "Wire.h"
Utilisé : D:\Documents\Arduino\libraries\Wire
Non utilisé : C:\Users\Chris\AppData\Local\Arduino15\packages\arduino\hardware\avr\1.6.20\libraries\Wire
Plusieurs bibliothèque trouvées pour "LinkedList.h"
Utilisé : D:\Documents\Arduino\libraries\LinkedList
Non utilisé : D:\Documents\Arduino\libraries\FX-SaberOS
exit status 1
'DFPLAYER_TX' was not declared in this scope

Ce rapport pourrait être plus détaillé avec
l'option "Afficher les résultats détaillés de la compilation"
activée dans Fichier -> Préférences.

from fx-saberos.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.