Ошибка: a function-definition is not allowed here before '{' token

transplantant
Offline
Зарегистрирован: 30.11.2021

Дорогие люди, помогите решить проблему. Создаю дистанционный пульсоксиметр. Работаю врачом в ковидном госпитале. Очень нужна ваша помощь!

Код взял с сайта https://create.arduino.cc/projecthub/1NextPCB/iot-based-pulse-oximeter-using-esp32-549166

[code]
/*

  ## Hardware Connections (ESP32 <- OLED <- MAX 30102):

  -VIN = 3.3V
  -GND = GND
  -SDA = 21 (or SDA)
  -SCL = 22 (or SCL)

*/



/*================================================================================================================================== */

char auth[] = "ijM8wv52vur7GH90ku66YjcaYz-tJgHO";
char ssid[] = "noname";      // Your WiFi Name (SSID) (**case sensitive).
char pass[] = "gera0001";  // Your WiFi Password.

/*================================================================================================================================== */








//DiY Projects Lab
#define BLYNK_PRINT Serial
#include <WiFi.h>
#include <BlynkSimpleEsp32.h>
#include <Wire.h>
#include <Adafruit_GFX.h> //OLED libraries
#include <Adafruit_SSD1306.h>
#include <SimpleTimer.h>
#include "MAX30105.h" //sparkfun MAX3010X library
//#include "heartRate.h"
SimpleTimer timer;
MAX30105 particleSensor;


#define INTERVAL_MESSAGE2 60000
unsigned long time_2 = 0;
int period = 2000;
unsigned long time_now = 0;
double avered = 0;
double aveir = 0;
double sumirrms = 0;
double sumredrms = 0;
int i = 0;
int Num = 100; //calculate SpO2 by this sampling interval

int oxygen;
double ESpO2 = 95.0;    //initial value of estimated SpO2
double FSpO2 = 0.7;     //filter factor for estimated SpO2
double frate = 0.95;    //low pass filter for IR/red LED value to eliminate AC component
#define TIMETOBOOT 3000 // wait for this time(msec) to output SpO2
#define SCALE 88.0      //adjust to display heart beat and SpO2 in the same scale
#define SAMPLING 5      //if you want to see heart beat more precisely , set SAMPLING to 1
#define FINGER_ON 3000  // if red signal is lower than this , it indicates your finger is not on the sensor
#define MINIMUM_SPO2 0.0

const byte RATE_SIZE = 4; //Increase this for more averaging. 4 is good.
byte rates[RATE_SIZE];    //Array of heart rates
byte rateSpot = 0;
long lastBeat = 0; //Time at which the last beat occurred
float beatsPerMinute;
int beatAvg;

#define SCREEN_WIDTH 128 // OLED display width, in pixels
#define SCREEN_HEIGHT 64 // OLED display height, in pixels
#define OLED_RESET -1    // Reset pin # (or -1 if sharing Arduino reset pin)

Adafruit_SSD1306 display(SCREEN_WIDTH, SCREEN_HEIGHT, &Wire, OLED_RESET); //Declaring the display name (display)

//Logo2 and Logo3 are two bmp pictures that display on the OLED if called
static const unsigned char PROGMEM logo2_bmp[] =
{ 0x03, 0xC0, 0xF0, 0x06, 0x71, 0x8C, 0x0C, 0x1B, 0x06, 0x18, 0x0E, 0x02, 0x10, 0x0C, 0x03, 0x10,
  0x04, 0x01, 0x10, 0x04, 0x01, 0x10, 0x40, 0x01, 0x10, 0x40, 0x01, 0x10, 0xC0, 0x03, 0x08, 0x88,
  0x02, 0x08, 0xB8, 0x04, 0xFF, 0x37, 0x08, 0x01, 0x30, 0x18, 0x01, 0x90, 0x30, 0x00, 0xC0, 0x60,
  0x00, 0x60, 0xC0, 0x00, 0x31, 0x80, 0x00, 0x1B, 0x00, 0x00, 0x0E, 0x00, 0x00, 0x04, 0x00,
};

static const unsigned char PROGMEM logo3_bmp[] =
{ 0x01, 0xF0, 0x0F, 0x80, 0x06, 0x1C, 0x38, 0x60, 0x18, 0x06, 0x60, 0x18, 0x10, 0x01, 0x80, 0x08,
  0x20, 0x01, 0x80, 0x04, 0x40, 0x00, 0x00, 0x02, 0x40, 0x00, 0x00, 0x02, 0xC0, 0x00, 0x08, 0x03,
  0x80, 0x00, 0x08, 0x01, 0x80, 0x00, 0x18, 0x01, 0x80, 0x00, 0x1C, 0x01, 0x80, 0x00, 0x14, 0x00,
  0x80, 0x00, 0x14, 0x00, 0x80, 0x00, 0x14, 0x00, 0x40, 0x10, 0x12, 0x00, 0x40, 0x10, 0x12, 0x00,
  0x7E, 0x1F, 0x23, 0xFE, 0x03, 0x31, 0xA0, 0x04, 0x01, 0xA0, 0xA0, 0x0C, 0x00, 0xA0, 0xA0, 0x08,
  0x00, 0x60, 0xE0, 0x10, 0x00, 0x20, 0x60, 0x20, 0x06, 0x00, 0x40, 0x60, 0x03, 0x00, 0x40, 0xC0,
  0x01, 0x80, 0x01, 0x80, 0x00, 0xC0, 0x03, 0x00, 0x00, 0x60, 0x06, 0x00, 0x00, 0x30, 0x0C, 0x00,
  0x00, 0x08, 0x10, 0x00, 0x00, 0x06, 0x60, 0x00, 0x00, 0x03, 0xC0, 0x00, 0x00, 0x01, 0x80, 0x00
};

#define USEFIFO

void setup()
{
  Serial.begin(115200);

  // Start I2C Communication SDA = 5 and SCL = 4 on Wemos Lolin32 ESP32 with built-in SSD1306 OLED
  Wire.begin(5, 4);

  if (!display.begin(SSD1306_SWITCHCAPVCC, 0x3C, false, false)) {
    Serial.println("Initializing...");
    display.begin(SSD1306_SWITCHCAPVCC, 0x3C); //Start the OLED display
    display.display();
    display.clearDisplay();
    Blynk.begin(auth, ssid, pass);

    // Initialize sensor
    while (!particleSensor.begin(Wire, I2C_SPEED_FAST)) //Use default I2C port, 400kHz speed
    {
      Serial.println("MAX30102 was not found. Please check wiring/power/solder jumper at MH-ET LIVE MAX30102 board. ");
      //while (1);
    }
    Serial.println("Place your index finger on the sensor with steady pressure.");
    void sendUptime()
    {
      Blynk.virtualWrite(V4, oxygen);
      //Blynk.virtualWrite(V5, beatAvg);
    }
    //Setup to sense a nice looking saw tooth on the plotter
    byte ledBrightness = 255; // 0x7F Options: 0=Off to 255=50mA
    byte sampleAverage = 4;   //Options: 1, 2, 4, 8, 16, 32
    byte ledMode = 2;         //Options: 1 = Red only, 2 = Red + IR, 3 = Red + IR + Green
    int sampleRate = 400;     //1000 is best but needs processing power//Options: 50, 100, 200, 400, 800, 1000, 1600, 3200
    int pulseWidth = 411;     //Options: 69, 118, 215, 411
    int adcRange = 16384;     //Options: 2048, 4096, 8192, 16384
    // Set up the wanted parameters
    particleSensor.setup(ledBrightness, sampleAverage, ledMode, sampleRate, pulseWidth, adcRange); //Configure sensor with these settings
    particleSensor.enableDIETEMPRDY();
    timer.setInterval(500, sendUptime);
  }



  void loop()
  {
    Blynk.run();
    timer.run(); // Initiates SimpleTimer
    {
      uint32_t ir, red, green;
      double fred, fir;
      double SpO2 = 0; //raw SpO2 before low pass filtered

#ifdef USEFIFO
      particleSensor.check(); //Check the sensor, read up to 3 samples

      while (particleSensor.available())

      { //do we have new data
#ifdef MAX30105
        red = particleSensor.getFIFORed(); //Sparkfun's MAX30105
        ir = particleSensor.getFIFOIR();   //Sparkfun's MAX30105
#else
        red = particleSensor.getFIFOIR(); //why getFOFOIR output Red data by MAX30102 on MH-ET LIVE breakout board
        ir = particleSensor.getFIFORed(); //why getFIFORed output IR data by MAX30102 on MH-ET LIVE breakout board
#endif

        i++;
        fred = (double)red;
        fir = (double)ir;
        avered = avered * frate + (double)red * (1.0 - frate); //average red level by low pass filter
        aveir = aveir * frate + (double)ir * (1.0 - frate);    //average IR level by low pass filter
        sumredrms += (fred - avered) * (fred - avered);        //square sum of alternate component of red level
        sumirrms += (fir - aveir) * (fir - aveir);             //square sum of alternate component of IR level
        if ((i % SAMPLING) == 0)
        { //slow down graph plotting speed for arduino Serial plotter by thin out
          if (millis() > TIMETOBOOT)
          {
            if (ir < FINGER_ON)
              ESpO2 = MINIMUM_SPO2; //indicator for finger detached
            //float temperature = particleSensor.readTemperatureF();
            if (ESpO2 <= -1)
            {
              ESpO2 = 0;
            }

            if (ESpO2 > 100)
            {
              ESpO2 = 100;
            }

            oxygen = ESpO2;

            Serial.print(" Oxygen % = ");
            Serial.println(oxygen);
          }
        }
        if ((i % Num) == 0)
        {
          double R = (sqrt(sumredrms) / avered) / (sqrt(sumirrms) / aveir);
          // Serial.println(R);
          SpO2 = -23.3 * (R - 0.4) + 100;               //http://ww1.microchip.com/downloads/jp/AppNotes/00001525B_JP.pdf
          ESpO2 = FSpO2 * ESpO2 + (1.0 - FSpO2) * SpO2; //low pass filter
          //Serial.print(SpO2); Serial.print(","); Serial.println(ESpO2);
          sumredrms = 0.0;
          sumirrms = 0.0;
          i = 0;
          break;
        }
        particleSensor.nextSample(); //We're finished with this sample so move to next sample
        //Serial.println(SpO2);
      }

      long irValue = particleSensor.getIR();
      //Serial.println(irValue);

      if (irValue > 7000)
      { //If a finger is detected
        display.clearDisplay();                             //Clear the display
        display.drawBitmap(5, 5, logo2_bmp, 24, 21, WHITE); //Draw the first bmp picture (little heart)
        display.setTextSize(2);                             //Near it display the average BPM you can display the BPM if you want
        display.setTextColor(WHITE);
        display.setCursor(50, 15);
        display.println("SpO2");
        display.setCursor(50, 50);
        //display.println(beatAvg);
        display.print(oxygen);
        display.println("%");

        display.display();
      }

      if (irValue == true)
      {

        display.clearDisplay();                             //Clear the display
        display.drawBitmap(0, 0, logo3_bmp, 32, 32, WHITE); //Draw the second picture (bigger heart)
        display.setTextSize(2);                             //And still displays the average BPM
        display.setTextColor(WHITE);
        display.setCursor(50, 15);
        display.println("SpO2");
        display.setCursor(50, 50);
        //display.println(beatAvg);
        display.print(oxygen);
        display.println("%");
        display.display();


      }

      if (irValue < 7000)
      { //If no finger is detected it inform the user and put the average BPM to 0 or it will be stored for the next measure
        //beatAvg=0;
        display.clearDisplay();
        display.setTextSize(1);
        display.setTextColor(WHITE);
        display.setCursor(30, 10);
        display.println("WiFi Connected ");
        display.setCursor(30, 25);
        display.println("Please Place ");
        display.setCursor(30, 4
                          0);
        display.println("your Finger ");


        display.display();
      }

      if (millis() > time_2 + INTERVAL_MESSAGE2 && oxygen < 93)

      {
        time_2 = millis();

        Blynk.notify("Alert! Oxygen Saturation below 93% Detected");
        Serial.print("Alert called");
      }

#endif
    }
[/code]
/*
  
 
 
Ошибка: Arduino: 1.8.16 (Windows 10), Плата:"WEMOS LOLIN32, 80MHz, Default, 240MHz (WiFi/BT), 921600"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
In file included from C:\Users\User\Documents\Arduino\libraries\blynk-library-master\src/Blynk/BlynkApi.h:37:0,
 
                 from C:\Users\User\Documents\Arduino\libraries\blynk-library-master\src/BlynkApiArduino.h:14,
 
                 from C:\Users\User\Documents\Arduino\libraries\blynk-library-master\src/BlynkSimpleEsp32.h:20,
 
                 from C:\Users\User\Desktop\Бизнес\123\123.ino:32:
 
C:\Users\User\Documents\Arduino\libraries\blynk-library-master\src/Blynk/BlynkTimer.h:36:21: error: redefinition of 'class BlynkTimer'
 
 #define SimpleTimer BlynkTimer
 
                     ^
 
C:\Users\User\Documents\Arduino\libraries\SimpleTimer/SimpleTimer.h:10:7: note: in expansion of macro 'SimpleTimer'
 
 class SimpleTimer {
 
       ^
 
C:\Users\User\Documents\Arduino\libraries\blynk-library-master\src/Blynk/BlynkTimer.h:36:21: error: previous definition of 'class BlynkTimer'
 
 #define SimpleTimer BlynkTimer
 
                     ^
 
C:\Users\User\Documents\Arduino\libraries\blynk-library-master\src/Blynk/BlynkTimer.h:41:7: note: in expansion of macro 'SimpleTimer'
 
 class SimpleTimer {
 
       ^
 
C:\Users\User\Desktop\Бизнес\123\123.ino: In function 'void setup()':
 
123:119:1: error: a function-definition is not allowed here before '{' token
 
123:133:26: error: 'sendUptime' was not declared in this scope
 
123:139:1: error: a function-definition is not allowed here before '{' token
 
123:272:1: error: expected '}' at end of input
 
Несколько библиотек найдено для "WiFi.h"
 
 Используется: C:\Users\User\AppData\Local\Arduino15\packages\esp32\hardware\esp32\1.0.5\libraries\WiFi
 
Не используется: D:\Arduino\libraries\WiFi
 
Несколько библиотек найдено для "Adafruit_SSD1306.h"
 
 Используется: C:\Users\User\Documents\Arduino\libraries\Adafruit_SSD1306
 
Не используется: C:\Users\User\Documents\Arduino\libraries\Adafruit_SSD1306_Wemos_Mini_OLED
 
exit status 1
 
a function-definition is not allowed here before '{' token
 
 
 
Этот отчёт будет иметь больше информации с
включенной опцией Файл -> Настройки ->
"Показать подробный вывод во время компиляции"
 
transplantant
Offline
Зарегистрирован: 30.11.2021

Буду очень благодарен

ЕвгенийП
ЕвгенийП аватар
Offline
Зарегистрирован: 25.05.2015

transplantant пишет:

Работаю врачом в ковидном госпитале. 

А в свободное от работы время занимаетесь

transplantant пишет:

from C:\Users\User\Desktop\Бизнес\123\123.ino:32:

Правильно?

Ну, как Вам помочь. В тексте написан чистый, ничем не замутнённый бред. Спросите у своего коллеги-психиатра что это слово означает и как людям с таким анамнезом помогают.

Конкретно то сообщение, что Вас смутило означает, что в строка №№120-124 у Вас определяется функция, а её в этом месте определять нельзя. Только эта информация Вам ничем не поможет, т.к. во-первых, Вы не знаете где и как можно, а во-вторых, это далеко не единственная ошибка.

Помочь Вам невозможно, т.к. Вы не имеете ни малейшего понятия о том как это делается, можно только сделать вместо Вас.

Если Вам для бизнеса работы в госпитале нужен код, закажите его в коммерческом разделе. Вам за нормальные деньги сделают.

 

transplantant
Offline
Зарегистрирован: 30.11.2021

Спасибо за ответ, а свободного времени у меня очень мало. Да, папка Бизнес.

transplantant
Offline
Зарегистрирован: 30.11.2021

Подскажите пожалуйста, где можно найти коммерческий раздел?

b707
Offline
Зарегистрирован: 26.05.2017

transplantant пишет:

Подскажите пожалуйста, где можно найти коммерческий раздел?

здесь: Ищу исполнителя