espressif / arduino-esp32

Arduino core for the ESP32
GNU Lesser General Public License v2.1
13.72k stars 7.43k forks source link

typo in camera_index.h OV2460 -> OV2640 #7461

Open beta-tester opened 2 years ago

beta-tester commented 2 years ago

Board

n/a

Device Description

n/a

Hardware Configuration

n/a

Version

v2.0.5

IDE Name

Arduino

Operating System

n/a

Flash frequency

n/a

PSRAM enabled

yes

Upload speed

n/a

Description

the title of the Camera web site is wrong for the OV2640 sensor camera_index.h

it extracts to:

<!doctype html>
<html>
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width,initial-scale=1">
        <title>ESP32 OV2460</title>
...

but it should be:

<!doctype html>
<html>
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width,initial-scale=1">
        <title>ESP32 OV2640</title>
...

Sketch

n/a

Debug Message

n/a

Other Steps to Reproduce

No response

I have checked existing issues, online documentation and the Troubleshooting Guide

SuGlider commented 2 years ago

Thanks for reporting! @me-no-dev can fix it for sure!

me-no-dev commented 2 years ago

yup, will do. Working on updated API of the camera driver itself and once that is done, I will update the HTML as part of the changes necessary here.

@SuGlider I would not call this a "bug" though :) it's just string typo

SuGlider commented 2 years ago

@SuGlider I would not call this a "bug" though :) it's just string typo

I couldn't find a softer tag in the list :-) - I agree it is just a typo.

beta-tester commented 1 year ago

any progress here?