mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-08 12:36:52 +03:00
fix (#3418)
This commit is contained in:
@@ -1364,9 +1364,8 @@ esp_err_t handler_editflow(httpd_req_t *req)
|
||||
std::string _ledi = std::string(_valuechar);
|
||||
if (isStringNumeric(_ledi))
|
||||
{
|
||||
float _ImageLedIntensity = std::stof(_valuechar);
|
||||
Camera.SetLEDIntensity(_ImageLedIntensity);
|
||||
CFstatus.ImageLedIntensity = CCstatus.ImageLedIntensity;
|
||||
int _ImageLedIntensity = std::stoi(_valuechar);
|
||||
CFstatus.ImageLedIntensity = Camera.SetLEDIntensity(_ImageLedIntensity);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user