├── .DS_Store ├── .gitignore ├── README.md ├── deprecated ├── examples │ ├── 2.0 │ │ └── Networking │ │ │ └── WiFi │ │ │ └── WifiScannerExample │ │ │ └── WifiScannerExample.ino │ ├── Apple_vs_Orange │ │ ├── Apple_vs_Orange.ino │ │ └── camera_pins.h │ ├── ArrayExample │ │ └── ArrayExample.ino │ ├── DataStructures │ │ ├── LongShortTermVotingExample │ │ │ └── LongShortTermVotingExample.ino │ │ ├── NdQueueExample │ │ │ └── NdQueueExample.ino │ │ ├── QueueExample │ │ │ └── QueueExample.ino │ │ └── VotingExample │ │ │ └── VotingExample.ino │ ├── ESP32CameraNaiveMotionDetection │ │ ├── ESP32CameraNaiveMotionDetection.ino │ │ └── camera_pins.h │ ├── EloquentArrayExample.ino │ ├── EloquentEEValueExample.ino │ ├── EloquentLoggingExample.ino │ ├── EloquentPinExample.ino │ ├── EloquentTimeUtilsExample.ino │ ├── HandwrittenDigitClassificationExample │ │ └── HandwrittenDigitClassificationExample.ino │ ├── HashMapExample │ │ └── HashMapExample.ino │ ├── MicromlColorIdentificationAttinyExample │ │ └── MicromlColorIdentificationAttinyExample.ino │ ├── MicromlColorIdentificationExample │ │ └── MicromlColorIdentificationExample.ino │ ├── MicromlGestureIdentificationExample │ │ ├── MicromlGestureIdentificationExample.ino │ │ ├── ble_sense.h │ │ ├── gestures_formatted │ │ │ ├── left.csv │ │ │ ├── punch.csv │ │ │ └── up.csv │ │ ├── imu_6050.h │ │ └── imu_9250.h │ ├── MicromlIrisExample │ │ ├── MicromlIrisExample.ino │ │ ├── iris.h │ │ └── iris_attiny.h │ ├── MicromlMorseIdentificationExample │ │ └── MicromlMorseIdentificationExample.ino │ ├── MicromlWakeWordIdentificationExample │ │ └── MicromlWakeWordIdentificationExample.ino │ ├── MicromlWifiIndoorPositioningExample │ │ └── MicromlWifiIndoorPositioningExample.ino │ ├── TheUltimateGuideToWifiIndoorPositioningExample │ │ ├── CollectData.h │ │ ├── GetPosition.h │ │ └── TheUltimateGuideToWifiIndoorPositioningExample.ino │ ├── ThermalCameraToAsciiArtExample │ │ ├── EloquentAsciiArt.h │ │ ├── EloquentMLX90640.h │ │ └── ThermalCameraToAsciiArtExample.ino │ ├── Vision │ │ ├── MotionDetection │ │ │ ├── .DS_Store │ │ │ └── MotionDetectionRGBExample │ │ │ │ ├── MotionDetectionRGBExample.ino │ │ │ │ └── stream_captures.py │ │ └── Processing │ │ │ ├── RGBHistogramExample │ │ │ └── RGBHistogramExample.ino │ │ │ └── YUVHistogramExample │ │ │ └── YUVHistogramExample.ino │ └── exampleInputStream.ino └── src │ ├── EloquentArduino.h │ ├── data_structures │ ├── Array.h │ ├── Counter.h │ ├── FSM.h │ ├── HashMap.h │ ├── PackedBitArray.h │ ├── PersistentInt16.h │ ├── PersistentInt32.h │ └── Queue.h │ ├── dev │ ├── await.h │ ├── black_magic.h │ ├── logging.h │ ├── print_utils.h │ ├── retry.h │ └── voltage.h │ ├── eloquentarduino │ ├── .DS_Store │ ├── data_structures │ │ ├── LongShortTermVoting.h │ │ ├── NdQueue.h │ │ ├── Queue.h │ │ ├── VariableWatcher.h │ │ └── Voting.h │ ├── io │ │ ├── Printer.h │ │ ├── print.h │ │ └── serial_print.h │ ├── modules │ │ ├── DS3231.h │ │ └── Wisol.h │ └── vision │ │ ├── camera │ │ ├── ESP32Camera.h │ │ ├── ESP32CameraHTTPVideoStreamingServer.h │ │ └── pins.h │ │ ├── io │ │ ├── decoders │ │ │ ├── Blue565RandomAccessDecoder.h │ │ │ ├── GrayscaleRandomAccessDecoder.h │ │ │ ├── Green565RandomAccessDecoder.h │ │ │ ├── RGB565RandomAccessDecoder.h │ │ │ ├── RandomAccessDecoder.h │ │ │ └── Red565RandomAccessDecoder.h │ │ └── writers │ │ │ └── JpegWriter.h │ │ └── processing │ │ ├── ColorHistogram.h │ │ ├── MotionDetector.h │ │ ├── RGBHistogram.h │ │ ├── YUVHistogram.h │ │ └── downscaling │ │ ├── Center.h │ │ ├── Core.h │ │ ├── Downscaler.h │ │ ├── FullAverage.h │ │ └── Strategy.h │ ├── io │ ├── InputStream │ │ ├── AnalogPinInputStream.h │ │ ├── ArrayInputStream.h │ │ ├── AssignableInputStream.h │ │ ├── AtLeast.h │ │ ├── Average.h │ │ ├── Baseline.h │ │ ├── Constrain.h │ │ ├── Derivative.h │ │ ├── EWMA.h │ │ ├── InputStream.h │ │ ├── Map.h │ │ ├── Round.h │ │ └── Transformer.h │ ├── Pin │ │ ├── AnalogIn.h │ │ ├── AnalogOut.h │ │ ├── DigitalIn.h │ │ ├── DigitalOut.h │ │ └── Pin.h │ └── Spiffs │ │ ├── Dir.h │ │ └── File.h │ └── modules │ ├── DS3231.h │ └── Wisol.h ├── disabled └── vision_qr_quirc │ ├── decode.c │ ├── identify.c │ ├── quirc.c │ ├── quirc.h │ ├── quirc_internal.h │ └── version_db.c ├── examples ├── CameraMotionDetection │ ├── CameraCaptureExample │ │ └── CameraCaptureExample.ino │ ├── CameraMotionCaptureExample │ │ └── CameraMotionCaptureExample.ino │ ├── CameraMotionDetectionExample │ │ └── CameraMotionDetectionExample.ino │ └── CameraMotionToTelegramExample │ │ └── CameraMotionToTelegramExample.ino ├── CameraWebServerExample │ └── CameraWebServerExample.ino ├── EdgeImpulse │ └── EdgeImpulseExample │ │ └── EdgeImpulseExample.ino ├── IndoorPositioning │ └── WiFiScannerExample │ │ └── WiFiScannerExample.ino ├── Telegram │ ├── CameraMotionToTelegramExample │ │ └── CameraMotionToTelegramExample.ino │ ├── SendJpegExample │ │ └── SendJpegExample.ino │ └── SendMessageExample │ │ └── SendMessageExample.ino └── VL53L5CX │ └── VL53L5cxCapture │ └── VL53L5cxCapture.ino ├── keywords.txt ├── library.json ├── library.properties ├── publish └── src ├── .DS_Store ├── eloquent.h └── eloquent ├── .DS_Store ├── apps └── telegram │ └── bot │ ├── BaseTelegramBot.h │ ├── Errors.h │ ├── wifi.h │ └── witnessmenow │ ├── TelegramCertificate.h │ ├── UniversalTelegramBot.cpp │ └── UniversalTelegramBot.h ├── collections └── circular_buffer.h ├── fs └── spiffs.h ├── graphics ├── .DS_Store └── colormaps │ ├── accent.h │ ├── accent_r.h │ ├── afmhot.h │ ├── afmhot_r.h │ ├── autumn.h │ ├── autumn_r.h │ ├── binary.h │ ├── binary_r.h │ ├── blues.h │ ├── blues_r.h │ ├── bone.h │ ├── bone_r.h │ ├── brbg.h │ ├── brbg_r.h │ ├── brg.h │ ├── brg_r.h │ ├── bugn.h │ ├── bugn_r.h │ ├── bupu.h │ ├── bupu_r.h │ ├── bwr.h │ ├── bwr_r.h │ ├── cividis.h │ ├── cividis_r.h │ ├── cmrmap.h │ ├── cmrmap_r.h │ ├── cool.h │ ├── cool_r.h │ ├── coolwarm.h │ ├── coolwarm_r.h │ ├── copper.h │ ├── copper_r.h │ ├── cubehelix.h │ ├── cubehelix_r.h │ ├── dark2.h │ ├── dark2_r.h │ ├── flag.h │ ├── flag_r.h │ ├── gist_earth.h │ ├── gist_earth_r.h │ ├── gist_gray.h │ ├── gist_gray_r.h │ ├── gist_heat.h │ ├── gist_heat_r.h │ ├── gist_ncar.h │ ├── gist_ncar_r.h │ ├── gist_rainbow.h │ ├── gist_rainbow_r.h │ ├── gist_stern.h │ ├── gist_stern_r.h │ ├── gist_yarg.h │ ├── gist_yarg_r.h │ ├── gnbu.h │ ├── gnbu_r.h │ ├── gnuplot.h │ ├── gnuplot2.h │ ├── gnuplot2_r.h │ ├── gnuplot_r.h │ ├── gray.h │ ├── gray_r.h │ ├── greens.h │ ├── greens_r.h │ ├── greys.h │ ├── greys_r.h │ ├── hot.h │ ├── hot_r.h │ ├── hsv.h │ ├── hsv_r.h │ ├── inferno.h │ ├── inferno_r.h │ ├── jet.h │ ├── jet_r.h │ ├── magma.h │ ├── magma_r.h │ ├── nipy_spectral.h │ ├── nipy_spectral_r.h │ ├── ocean.h │ ├── ocean_r.h │ ├── oranges.h │ ├── oranges_r.h │ ├── orrd.h │ ├── orrd_r.h │ ├── paired.h │ ├── paired_r.h │ ├── pastel1.h │ ├── pastel1_r.h │ ├── pastel2.h │ ├── pastel2_r.h │ ├── pink.h │ ├── pink_r.h │ ├── piyg.h │ ├── piyg_r.h │ ├── plasma.h │ ├── plasma_r.h │ ├── prgn.h │ ├── prgn_r.h │ ├── prism.h │ ├── prism_r.h │ ├── pubu.h │ ├── pubu_r.h │ ├── pubugn.h │ ├── pubugn_r.h │ ├── puor.h │ ├── puor_r.h │ ├── purd.h │ ├── purd_r.h │ ├── purples.h │ ├── purples_r.h │ ├── rainbow.h │ ├── rainbow_r.h │ ├── rdbu.h │ ├── rdbu_r.h │ ├── rdgy.h │ ├── rdgy_r.h │ ├── rdpu.h │ ├── rdpu_r.h │ ├── rdylbu.h │ ├── rdylbu_r.h │ ├── rdylgn.h │ ├── rdylgn_r.h │ ├── reds.h │ ├── reds_r.h │ ├── seismic.h │ ├── seismic_r.h │ ├── set1.h │ ├── set1_r.h │ ├── set2.h │ ├── set2_r.h │ ├── set3.h │ ├── set3_r.h │ ├── spectral.h │ ├── spectral_r.h │ ├── spring.h │ ├── spring_r.h │ ├── summer.h │ ├── summer_r.h │ ├── tab10.h │ ├── tab10_r.h │ ├── tab20.h │ ├── tab20_r.h │ ├── tab20b.h │ ├── tab20b_r.h │ ├── tab20c.h │ ├── tab20c_r.h │ ├── terrain.h │ ├── terrain_r.h │ ├── turbo.h │ ├── turbo_r.h │ ├── twilight.h │ ├── twilight_r.h │ ├── twilight_shifted.h │ ├── twilight_shifted_r.h │ ├── viridis.h │ ├── viridis_r.h │ ├── winter.h │ ├── winter_r.h │ ├── wistia.h │ ├── wistia_r.h │ ├── ylgn.h │ ├── ylgn_r.h │ ├── ylgnbu.h │ ├── ylgnbu_r.h │ ├── ylorbr.h │ ├── ylorbr_r.h │ ├── ylorrd.h │ └── ylorrd_r.h ├── io ├── json.h └── json │ └── JsonEncoder.h ├── macros.h ├── math.h ├── modules ├── VL53L5CX.h └── vl53l5cx │ ├── 4x4.h │ └── 8x8.h ├── networking ├── wifi.h └── wifi │ └── WifiScanner.h ├── perf.h ├── print.h ├── tinyml ├── edgeimpulse.h ├── edgeimpulse │ └── impulse.h └── voting │ └── quorum.h ├── utils.h └── vision ├── .DS_Store ├── camera ├── .DS_Store ├── BaseCamera.h ├── Errors.h ├── aithinker.h ├── decoders.h ├── esp32.h ├── esp32 │ ├── .DS_Store │ ├── BaseEsp32Camera.h │ ├── aithinker │ │ ├── gray │ │ │ ├── 96x96.h │ │ │ ├── hd.h │ │ │ ├── hvga.h │ │ │ ├── qcif.h │ │ │ ├── qqvga.h │ │ │ ├── qvga.h │ │ │ ├── uxga.h │ │ │ └── vga.h │ │ ├── jpeg.h │ │ └── jpeg │ │ │ ├── qqvga.h │ │ │ ├── qvga.h │ │ │ └── vga.h │ ├── eye │ │ └── gray │ │ │ ├── 96x96.h │ │ │ ├── hd.h │ │ │ ├── hvga.h │ │ │ ├── qcif.h │ │ │ ├── qqvga.h │ │ │ ├── qvga.h │ │ │ ├── uxga.h │ │ │ └── vga.h │ ├── m5 │ │ └── gray │ │ │ ├── 96x96.h │ │ │ ├── hd.h │ │ │ ├── hvga.h │ │ │ ├── qcif.h │ │ │ ├── qqvga.h │ │ │ ├── qvga.h │ │ │ ├── uxga.h │ │ │ └── vga.h │ ├── m5wide │ │ ├── .DS_Store │ │ ├── gray │ │ │ ├── 96x96.h │ │ │ ├── hd.h │ │ │ ├── hvga.h │ │ │ ├── qcif.h │ │ │ ├── qqvga.h │ │ │ ├── qvga.h │ │ │ ├── uxga.h │ │ │ └── vga.h │ │ ├── jpeg.h │ │ ├── jpeg │ │ │ ├── qqvga.h │ │ │ ├── qvga.h │ │ │ └── vga.h │ │ └── m5wide.h │ ├── pins │ │ ├── aithinker.h │ │ ├── eye.h │ │ ├── m5stack.h │ │ ├── m5wide.h │ │ └── wrover.h │ ├── webserver.h │ └── wrover │ │ └── gray │ │ ├── 96x96.h │ │ ├── hd.h │ │ ├── hvga.h │ │ ├── qcif.h │ │ ├── qqvga.h │ │ ├── qvga.h │ │ ├── uxga.h │ │ └── vga.h ├── esp32_sensor_config.h ├── eye.h ├── m5stack.h ├── m5wide.h ├── ov767x │ ├── BaseOV767x.h │ └── gray │ │ ├── cif.h │ │ ├── qcif.h │ │ ├── qqvga.h │ │ ├── qvga.h │ │ └── vga.h ├── portenta.h └── wrover.h ├── features └── LocalBinaryPattern.h ├── image.h ├── image ├── BaseImage.h ├── gray │ ├── cif.h │ ├── custom.h │ ├── hd.h │ ├── hvga.h │ ├── qcif.h │ ├── qqvga.h │ ├── qvga.h │ ├── uxga.h │ ├── vga.h │ └── x96x96.h └── rgb565.h ├── jpeg.h ├── jpeg ├── JpegBuilder.h ├── JpegEncoder.h └── bitbank2 │ ├── BitBankJpegEncoder.h │ ├── definitions.h │ └── jpeg.inl ├── motion.h ├── motion ├── BaseMotionDetector.h └── naive.h ├── transform.h └── transform └── gray ├── BilinearResize.h └── NearestResize.h /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/README.md -------------------------------------------------------------------------------- /deprecated/examples/2.0/Networking/WiFi/WifiScannerExample/WifiScannerExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/examples/2.0/Networking/WiFi/WifiScannerExample/WifiScannerExample.ino -------------------------------------------------------------------------------- /deprecated/examples/Apple_vs_Orange/Apple_vs_Orange.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/examples/Apple_vs_Orange/Apple_vs_Orange.ino -------------------------------------------------------------------------------- /deprecated/examples/Apple_vs_Orange/camera_pins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/examples/Apple_vs_Orange/camera_pins.h -------------------------------------------------------------------------------- /deprecated/examples/ArrayExample/ArrayExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/examples/ArrayExample/ArrayExample.ino -------------------------------------------------------------------------------- /deprecated/examples/DataStructures/LongShortTermVotingExample/LongShortTermVotingExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/examples/DataStructures/LongShortTermVotingExample/LongShortTermVotingExample.ino -------------------------------------------------------------------------------- /deprecated/examples/DataStructures/NdQueueExample/NdQueueExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/examples/DataStructures/NdQueueExample/NdQueueExample.ino -------------------------------------------------------------------------------- /deprecated/examples/DataStructures/QueueExample/QueueExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/examples/DataStructures/QueueExample/QueueExample.ino -------------------------------------------------------------------------------- /deprecated/examples/DataStructures/VotingExample/VotingExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/examples/DataStructures/VotingExample/VotingExample.ino -------------------------------------------------------------------------------- /deprecated/examples/ESP32CameraNaiveMotionDetection/ESP32CameraNaiveMotionDetection.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/examples/ESP32CameraNaiveMotionDetection/ESP32CameraNaiveMotionDetection.ino -------------------------------------------------------------------------------- /deprecated/examples/ESP32CameraNaiveMotionDetection/camera_pins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/examples/ESP32CameraNaiveMotionDetection/camera_pins.h -------------------------------------------------------------------------------- /deprecated/examples/EloquentArrayExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/examples/EloquentArrayExample.ino -------------------------------------------------------------------------------- /deprecated/examples/EloquentEEValueExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/examples/EloquentEEValueExample.ino -------------------------------------------------------------------------------- /deprecated/examples/EloquentLoggingExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/examples/EloquentLoggingExample.ino -------------------------------------------------------------------------------- /deprecated/examples/EloquentPinExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/examples/EloquentPinExample.ino -------------------------------------------------------------------------------- /deprecated/examples/EloquentTimeUtilsExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/examples/EloquentTimeUtilsExample.ino -------------------------------------------------------------------------------- /deprecated/examples/HandwrittenDigitClassificationExample/HandwrittenDigitClassificationExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/examples/HandwrittenDigitClassificationExample/HandwrittenDigitClassificationExample.ino -------------------------------------------------------------------------------- /deprecated/examples/HashMapExample/HashMapExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/examples/HashMapExample/HashMapExample.ino -------------------------------------------------------------------------------- /deprecated/examples/MicromlColorIdentificationAttinyExample/MicromlColorIdentificationAttinyExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/examples/MicromlColorIdentificationAttinyExample/MicromlColorIdentificationAttinyExample.ino -------------------------------------------------------------------------------- /deprecated/examples/MicromlColorIdentificationExample/MicromlColorIdentificationExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/examples/MicromlColorIdentificationExample/MicromlColorIdentificationExample.ino -------------------------------------------------------------------------------- /deprecated/examples/MicromlGestureIdentificationExample/MicromlGestureIdentificationExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/examples/MicromlGestureIdentificationExample/MicromlGestureIdentificationExample.ino -------------------------------------------------------------------------------- /deprecated/examples/MicromlGestureIdentificationExample/ble_sense.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/examples/MicromlGestureIdentificationExample/ble_sense.h -------------------------------------------------------------------------------- /deprecated/examples/MicromlGestureIdentificationExample/gestures_formatted/left.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/examples/MicromlGestureIdentificationExample/gestures_formatted/left.csv -------------------------------------------------------------------------------- /deprecated/examples/MicromlGestureIdentificationExample/gestures_formatted/punch.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/examples/MicromlGestureIdentificationExample/gestures_formatted/punch.csv -------------------------------------------------------------------------------- /deprecated/examples/MicromlGestureIdentificationExample/gestures_formatted/up.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/examples/MicromlGestureIdentificationExample/gestures_formatted/up.csv -------------------------------------------------------------------------------- /deprecated/examples/MicromlGestureIdentificationExample/imu_6050.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/examples/MicromlGestureIdentificationExample/imu_6050.h -------------------------------------------------------------------------------- /deprecated/examples/MicromlGestureIdentificationExample/imu_9250.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/examples/MicromlGestureIdentificationExample/imu_9250.h -------------------------------------------------------------------------------- /deprecated/examples/MicromlIrisExample/MicromlIrisExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/examples/MicromlIrisExample/MicromlIrisExample.ino -------------------------------------------------------------------------------- /deprecated/examples/MicromlIrisExample/iris.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/examples/MicromlIrisExample/iris.h -------------------------------------------------------------------------------- /deprecated/examples/MicromlIrisExample/iris_attiny.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/examples/MicromlIrisExample/iris_attiny.h -------------------------------------------------------------------------------- /deprecated/examples/MicromlMorseIdentificationExample/MicromlMorseIdentificationExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/examples/MicromlMorseIdentificationExample/MicromlMorseIdentificationExample.ino -------------------------------------------------------------------------------- /deprecated/examples/MicromlWakeWordIdentificationExample/MicromlWakeWordIdentificationExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/examples/MicromlWakeWordIdentificationExample/MicromlWakeWordIdentificationExample.ino -------------------------------------------------------------------------------- /deprecated/examples/MicromlWifiIndoorPositioningExample/MicromlWifiIndoorPositioningExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/examples/MicromlWifiIndoorPositioningExample/MicromlWifiIndoorPositioningExample.ino -------------------------------------------------------------------------------- /deprecated/examples/TheUltimateGuideToWifiIndoorPositioningExample/CollectData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/examples/TheUltimateGuideToWifiIndoorPositioningExample/CollectData.h -------------------------------------------------------------------------------- /deprecated/examples/TheUltimateGuideToWifiIndoorPositioningExample/GetPosition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/examples/TheUltimateGuideToWifiIndoorPositioningExample/GetPosition.h -------------------------------------------------------------------------------- /deprecated/examples/TheUltimateGuideToWifiIndoorPositioningExample/TheUltimateGuideToWifiIndoorPositioningExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/examples/TheUltimateGuideToWifiIndoorPositioningExample/TheUltimateGuideToWifiIndoorPositioningExample.ino -------------------------------------------------------------------------------- /deprecated/examples/ThermalCameraToAsciiArtExample/EloquentAsciiArt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/examples/ThermalCameraToAsciiArtExample/EloquentAsciiArt.h -------------------------------------------------------------------------------- /deprecated/examples/ThermalCameraToAsciiArtExample/EloquentMLX90640.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/examples/ThermalCameraToAsciiArtExample/EloquentMLX90640.h -------------------------------------------------------------------------------- /deprecated/examples/ThermalCameraToAsciiArtExample/ThermalCameraToAsciiArtExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/examples/ThermalCameraToAsciiArtExample/ThermalCameraToAsciiArtExample.ino -------------------------------------------------------------------------------- /deprecated/examples/Vision/MotionDetection/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/examples/Vision/MotionDetection/.DS_Store -------------------------------------------------------------------------------- /deprecated/examples/Vision/MotionDetection/MotionDetectionRGBExample/MotionDetectionRGBExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/examples/Vision/MotionDetection/MotionDetectionRGBExample/MotionDetectionRGBExample.ino -------------------------------------------------------------------------------- /deprecated/examples/Vision/MotionDetection/MotionDetectionRGBExample/stream_captures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/examples/Vision/MotionDetection/MotionDetectionRGBExample/stream_captures.py -------------------------------------------------------------------------------- /deprecated/examples/Vision/Processing/RGBHistogramExample/RGBHistogramExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/examples/Vision/Processing/RGBHistogramExample/RGBHistogramExample.ino -------------------------------------------------------------------------------- /deprecated/examples/Vision/Processing/YUVHistogramExample/YUVHistogramExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/examples/Vision/Processing/YUVHistogramExample/YUVHistogramExample.ino -------------------------------------------------------------------------------- /deprecated/examples/exampleInputStream.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/examples/exampleInputStream.ino -------------------------------------------------------------------------------- /deprecated/src/EloquentArduino.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | 4 | #define _ELOQUENTARDUINO_H_ 1 -------------------------------------------------------------------------------- /deprecated/src/data_structures/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/data_structures/Array.h -------------------------------------------------------------------------------- /deprecated/src/data_structures/Counter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/data_structures/Counter.h -------------------------------------------------------------------------------- /deprecated/src/data_structures/FSM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/data_structures/FSM.h -------------------------------------------------------------------------------- /deprecated/src/data_structures/HashMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/data_structures/HashMap.h -------------------------------------------------------------------------------- /deprecated/src/data_structures/PackedBitArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/data_structures/PackedBitArray.h -------------------------------------------------------------------------------- /deprecated/src/data_structures/PersistentInt16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/data_structures/PersistentInt16.h -------------------------------------------------------------------------------- /deprecated/src/data_structures/PersistentInt32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/data_structures/PersistentInt32.h -------------------------------------------------------------------------------- /deprecated/src/data_structures/Queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/data_structures/Queue.h -------------------------------------------------------------------------------- /deprecated/src/dev/await.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/dev/await.h -------------------------------------------------------------------------------- /deprecated/src/dev/black_magic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/dev/black_magic.h -------------------------------------------------------------------------------- /deprecated/src/dev/logging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/dev/logging.h -------------------------------------------------------------------------------- /deprecated/src/dev/print_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/dev/print_utils.h -------------------------------------------------------------------------------- /deprecated/src/dev/retry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/dev/retry.h -------------------------------------------------------------------------------- /deprecated/src/dev/voltage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/dev/voltage.h -------------------------------------------------------------------------------- /deprecated/src/eloquentarduino/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/eloquentarduino/.DS_Store -------------------------------------------------------------------------------- /deprecated/src/eloquentarduino/data_structures/LongShortTermVoting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/eloquentarduino/data_structures/LongShortTermVoting.h -------------------------------------------------------------------------------- /deprecated/src/eloquentarduino/data_structures/NdQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/eloquentarduino/data_structures/NdQueue.h -------------------------------------------------------------------------------- /deprecated/src/eloquentarduino/data_structures/Queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/eloquentarduino/data_structures/Queue.h -------------------------------------------------------------------------------- /deprecated/src/eloquentarduino/data_structures/VariableWatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/eloquentarduino/data_structures/VariableWatcher.h -------------------------------------------------------------------------------- /deprecated/src/eloquentarduino/data_structures/Voting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/eloquentarduino/data_structures/Voting.h -------------------------------------------------------------------------------- /deprecated/src/eloquentarduino/io/Printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/eloquentarduino/io/Printer.h -------------------------------------------------------------------------------- /deprecated/src/eloquentarduino/io/print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/eloquentarduino/io/print.h -------------------------------------------------------------------------------- /deprecated/src/eloquentarduino/io/serial_print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/eloquentarduino/io/serial_print.h -------------------------------------------------------------------------------- /deprecated/src/eloquentarduino/modules/DS3231.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/eloquentarduino/modules/DS3231.h -------------------------------------------------------------------------------- /deprecated/src/eloquentarduino/modules/Wisol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/eloquentarduino/modules/Wisol.h -------------------------------------------------------------------------------- /deprecated/src/eloquentarduino/vision/camera/ESP32Camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/eloquentarduino/vision/camera/ESP32Camera.h -------------------------------------------------------------------------------- /deprecated/src/eloquentarduino/vision/camera/ESP32CameraHTTPVideoStreamingServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/eloquentarduino/vision/camera/ESP32CameraHTTPVideoStreamingServer.h -------------------------------------------------------------------------------- /deprecated/src/eloquentarduino/vision/camera/pins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/eloquentarduino/vision/camera/pins.h -------------------------------------------------------------------------------- /deprecated/src/eloquentarduino/vision/io/decoders/Blue565RandomAccessDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/eloquentarduino/vision/io/decoders/Blue565RandomAccessDecoder.h -------------------------------------------------------------------------------- /deprecated/src/eloquentarduino/vision/io/decoders/GrayscaleRandomAccessDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/eloquentarduino/vision/io/decoders/GrayscaleRandomAccessDecoder.h -------------------------------------------------------------------------------- /deprecated/src/eloquentarduino/vision/io/decoders/Green565RandomAccessDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/eloquentarduino/vision/io/decoders/Green565RandomAccessDecoder.h -------------------------------------------------------------------------------- /deprecated/src/eloquentarduino/vision/io/decoders/RGB565RandomAccessDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/eloquentarduino/vision/io/decoders/RGB565RandomAccessDecoder.h -------------------------------------------------------------------------------- /deprecated/src/eloquentarduino/vision/io/decoders/RandomAccessDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/eloquentarduino/vision/io/decoders/RandomAccessDecoder.h -------------------------------------------------------------------------------- /deprecated/src/eloquentarduino/vision/io/decoders/Red565RandomAccessDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/eloquentarduino/vision/io/decoders/Red565RandomAccessDecoder.h -------------------------------------------------------------------------------- /deprecated/src/eloquentarduino/vision/io/writers/JpegWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/eloquentarduino/vision/io/writers/JpegWriter.h -------------------------------------------------------------------------------- /deprecated/src/eloquentarduino/vision/processing/ColorHistogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/eloquentarduino/vision/processing/ColorHistogram.h -------------------------------------------------------------------------------- /deprecated/src/eloquentarduino/vision/processing/MotionDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/eloquentarduino/vision/processing/MotionDetector.h -------------------------------------------------------------------------------- /deprecated/src/eloquentarduino/vision/processing/RGBHistogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/eloquentarduino/vision/processing/RGBHistogram.h -------------------------------------------------------------------------------- /deprecated/src/eloquentarduino/vision/processing/YUVHistogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/eloquentarduino/vision/processing/YUVHistogram.h -------------------------------------------------------------------------------- /deprecated/src/eloquentarduino/vision/processing/downscaling/Center.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/eloquentarduino/vision/processing/downscaling/Center.h -------------------------------------------------------------------------------- /deprecated/src/eloquentarduino/vision/processing/downscaling/Core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/eloquentarduino/vision/processing/downscaling/Core.h -------------------------------------------------------------------------------- /deprecated/src/eloquentarduino/vision/processing/downscaling/Downscaler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/eloquentarduino/vision/processing/downscaling/Downscaler.h -------------------------------------------------------------------------------- /deprecated/src/eloquentarduino/vision/processing/downscaling/FullAverage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/eloquentarduino/vision/processing/downscaling/FullAverage.h -------------------------------------------------------------------------------- /deprecated/src/eloquentarduino/vision/processing/downscaling/Strategy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/eloquentarduino/vision/processing/downscaling/Strategy.h -------------------------------------------------------------------------------- /deprecated/src/io/InputStream/AnalogPinInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/io/InputStream/AnalogPinInputStream.h -------------------------------------------------------------------------------- /deprecated/src/io/InputStream/ArrayInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/io/InputStream/ArrayInputStream.h -------------------------------------------------------------------------------- /deprecated/src/io/InputStream/AssignableInputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/io/InputStream/AssignableInputStream.h -------------------------------------------------------------------------------- /deprecated/src/io/InputStream/AtLeast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/io/InputStream/AtLeast.h -------------------------------------------------------------------------------- /deprecated/src/io/InputStream/Average.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/io/InputStream/Average.h -------------------------------------------------------------------------------- /deprecated/src/io/InputStream/Baseline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/io/InputStream/Baseline.h -------------------------------------------------------------------------------- /deprecated/src/io/InputStream/Constrain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/io/InputStream/Constrain.h -------------------------------------------------------------------------------- /deprecated/src/io/InputStream/Derivative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/io/InputStream/Derivative.h -------------------------------------------------------------------------------- /deprecated/src/io/InputStream/EWMA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/io/InputStream/EWMA.h -------------------------------------------------------------------------------- /deprecated/src/io/InputStream/InputStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/io/InputStream/InputStream.h -------------------------------------------------------------------------------- /deprecated/src/io/InputStream/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/io/InputStream/Map.h -------------------------------------------------------------------------------- /deprecated/src/io/InputStream/Round.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/io/InputStream/Round.h -------------------------------------------------------------------------------- /deprecated/src/io/InputStream/Transformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/io/InputStream/Transformer.h -------------------------------------------------------------------------------- /deprecated/src/io/Pin/AnalogIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/io/Pin/AnalogIn.h -------------------------------------------------------------------------------- /deprecated/src/io/Pin/AnalogOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/io/Pin/AnalogOut.h -------------------------------------------------------------------------------- /deprecated/src/io/Pin/DigitalIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/io/Pin/DigitalIn.h -------------------------------------------------------------------------------- /deprecated/src/io/Pin/DigitalOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/io/Pin/DigitalOut.h -------------------------------------------------------------------------------- /deprecated/src/io/Pin/Pin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/io/Pin/Pin.h -------------------------------------------------------------------------------- /deprecated/src/io/Spiffs/Dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/io/Spiffs/Dir.h -------------------------------------------------------------------------------- /deprecated/src/io/Spiffs/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/io/Spiffs/File.h -------------------------------------------------------------------------------- /deprecated/src/modules/DS3231.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/modules/DS3231.h -------------------------------------------------------------------------------- /deprecated/src/modules/Wisol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/deprecated/src/modules/Wisol.h -------------------------------------------------------------------------------- /disabled/vision_qr_quirc/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/disabled/vision_qr_quirc/decode.c -------------------------------------------------------------------------------- /disabled/vision_qr_quirc/identify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/disabled/vision_qr_quirc/identify.c -------------------------------------------------------------------------------- /disabled/vision_qr_quirc/quirc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/disabled/vision_qr_quirc/quirc.c -------------------------------------------------------------------------------- /disabled/vision_qr_quirc/quirc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/disabled/vision_qr_quirc/quirc.h -------------------------------------------------------------------------------- /disabled/vision_qr_quirc/quirc_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/disabled/vision_qr_quirc/quirc_internal.h -------------------------------------------------------------------------------- /disabled/vision_qr_quirc/version_db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/disabled/vision_qr_quirc/version_db.c -------------------------------------------------------------------------------- /examples/CameraMotionDetection/CameraCaptureExample/CameraCaptureExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/examples/CameraMotionDetection/CameraCaptureExample/CameraCaptureExample.ino -------------------------------------------------------------------------------- /examples/CameraMotionDetection/CameraMotionCaptureExample/CameraMotionCaptureExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/examples/CameraMotionDetection/CameraMotionCaptureExample/CameraMotionCaptureExample.ino -------------------------------------------------------------------------------- /examples/CameraMotionDetection/CameraMotionDetectionExample/CameraMotionDetectionExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/examples/CameraMotionDetection/CameraMotionDetectionExample/CameraMotionDetectionExample.ino -------------------------------------------------------------------------------- /examples/CameraMotionDetection/CameraMotionToTelegramExample/CameraMotionToTelegramExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/examples/CameraMotionDetection/CameraMotionToTelegramExample/CameraMotionToTelegramExample.ino -------------------------------------------------------------------------------- /examples/CameraWebServerExample/CameraWebServerExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/examples/CameraWebServerExample/CameraWebServerExample.ino -------------------------------------------------------------------------------- /examples/EdgeImpulse/EdgeImpulseExample/EdgeImpulseExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/examples/EdgeImpulse/EdgeImpulseExample/EdgeImpulseExample.ino -------------------------------------------------------------------------------- /examples/IndoorPositioning/WiFiScannerExample/WiFiScannerExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/examples/IndoorPositioning/WiFiScannerExample/WiFiScannerExample.ino -------------------------------------------------------------------------------- /examples/Telegram/CameraMotionToTelegramExample/CameraMotionToTelegramExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/examples/Telegram/CameraMotionToTelegramExample/CameraMotionToTelegramExample.ino -------------------------------------------------------------------------------- /examples/Telegram/SendJpegExample/SendJpegExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/examples/Telegram/SendJpegExample/SendJpegExample.ino -------------------------------------------------------------------------------- /examples/Telegram/SendMessageExample/SendMessageExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/examples/Telegram/SendMessageExample/SendMessageExample.ino -------------------------------------------------------------------------------- /examples/VL53L5CX/VL53L5cxCapture/VL53L5cxCapture.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/examples/VL53L5CX/VL53L5cxCapture/VL53L5cxCapture.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/library.json -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/library.properties -------------------------------------------------------------------------------- /publish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/publish -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/eloquent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent.h -------------------------------------------------------------------------------- /src/eloquent/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/.DS_Store -------------------------------------------------------------------------------- /src/eloquent/apps/telegram/bot/BaseTelegramBot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/apps/telegram/bot/BaseTelegramBot.h -------------------------------------------------------------------------------- /src/eloquent/apps/telegram/bot/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/apps/telegram/bot/Errors.h -------------------------------------------------------------------------------- /src/eloquent/apps/telegram/bot/wifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/apps/telegram/bot/wifi.h -------------------------------------------------------------------------------- /src/eloquent/apps/telegram/bot/witnessmenow/TelegramCertificate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/apps/telegram/bot/witnessmenow/TelegramCertificate.h -------------------------------------------------------------------------------- /src/eloquent/apps/telegram/bot/witnessmenow/UniversalTelegramBot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/apps/telegram/bot/witnessmenow/UniversalTelegramBot.cpp -------------------------------------------------------------------------------- /src/eloquent/apps/telegram/bot/witnessmenow/UniversalTelegramBot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/apps/telegram/bot/witnessmenow/UniversalTelegramBot.h -------------------------------------------------------------------------------- /src/eloquent/collections/circular_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/collections/circular_buffer.h -------------------------------------------------------------------------------- /src/eloquent/fs/spiffs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/fs/spiffs.h -------------------------------------------------------------------------------- /src/eloquent/graphics/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/.DS_Store -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/accent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/accent.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/accent_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/accent_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/afmhot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/afmhot.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/afmhot_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/afmhot_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/autumn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/autumn.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/autumn_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/autumn_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/binary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/binary.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/binary_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/binary_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/blues.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/blues.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/blues_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/blues_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/bone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/bone.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/bone_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/bone_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/brbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/brbg.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/brbg_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/brbg_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/brg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/brg.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/brg_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/brg_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/bugn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/bugn.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/bugn_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/bugn_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/bupu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/bupu.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/bupu_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/bupu_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/bwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/bwr.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/bwr_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/bwr_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/cividis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/cividis.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/cividis_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/cividis_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/cmrmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/cmrmap.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/cmrmap_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/cmrmap_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/cool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/cool.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/cool_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/cool_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/coolwarm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/coolwarm.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/coolwarm_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/coolwarm_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/copper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/copper.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/copper_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/copper_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/cubehelix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/cubehelix.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/cubehelix_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/cubehelix_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/dark2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/dark2.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/dark2_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/dark2_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/flag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/flag.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/flag_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/flag_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/gist_earth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/gist_earth.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/gist_earth_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/gist_earth_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/gist_gray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/gist_gray.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/gist_gray_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/gist_gray_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/gist_heat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/gist_heat.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/gist_heat_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/gist_heat_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/gist_ncar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/gist_ncar.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/gist_ncar_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/gist_ncar_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/gist_rainbow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/gist_rainbow.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/gist_rainbow_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/gist_rainbow_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/gist_stern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/gist_stern.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/gist_stern_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/gist_stern_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/gist_yarg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/gist_yarg.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/gist_yarg_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/gist_yarg_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/gnbu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/gnbu.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/gnbu_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/gnbu_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/gnuplot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/gnuplot.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/gnuplot2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/gnuplot2.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/gnuplot2_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/gnuplot2_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/gnuplot_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/gnuplot_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/gray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/gray.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/gray_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/gray_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/greens.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/greens.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/greens_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/greens_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/greys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/greys.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/greys_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/greys_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/hot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/hot.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/hot_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/hot_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/hsv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/hsv.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/hsv_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/hsv_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/inferno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/inferno.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/inferno_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/inferno_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/jet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/jet.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/jet_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/jet_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/magma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/magma.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/magma_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/magma_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/nipy_spectral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/nipy_spectral.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/nipy_spectral_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/nipy_spectral_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/ocean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/ocean.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/ocean_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/ocean_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/oranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/oranges.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/oranges_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/oranges_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/orrd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/orrd.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/orrd_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/orrd_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/paired.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/paired.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/paired_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/paired_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/pastel1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/pastel1.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/pastel1_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/pastel1_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/pastel2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/pastel2.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/pastel2_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/pastel2_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/pink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/pink.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/pink_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/pink_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/piyg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/piyg.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/piyg_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/piyg_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/plasma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/plasma.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/plasma_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/plasma_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/prgn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/prgn.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/prgn_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/prgn_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/prism.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/prism.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/prism_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/prism_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/pubu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/pubu.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/pubu_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/pubu_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/pubugn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/pubugn.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/pubugn_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/pubugn_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/puor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/puor.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/puor_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/puor_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/purd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/purd.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/purd_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/purd_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/purples.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/purples.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/purples_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/purples_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/rainbow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/rainbow.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/rainbow_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/rainbow_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/rdbu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/rdbu.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/rdbu_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/rdbu_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/rdgy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/rdgy.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/rdgy_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/rdgy_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/rdpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/rdpu.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/rdpu_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/rdpu_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/rdylbu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/rdylbu.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/rdylbu_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/rdylbu_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/rdylgn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/rdylgn.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/rdylgn_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/rdylgn_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/reds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/reds.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/reds_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/reds_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/seismic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/seismic.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/seismic_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/seismic_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/set1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/set1.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/set1_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/set1_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/set2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/set2.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/set2_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/set2_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/set3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/set3.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/set3_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/set3_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/spectral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/spectral.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/spectral_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/spectral_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/spring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/spring.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/spring_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/spring_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/summer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/summer.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/summer_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/summer_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/tab10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/tab10.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/tab10_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/tab10_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/tab20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/tab20.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/tab20_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/tab20_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/tab20b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/tab20b.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/tab20b_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/tab20b_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/tab20c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/tab20c.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/tab20c_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/tab20c_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/terrain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/terrain.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/terrain_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/terrain_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/turbo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/turbo.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/turbo_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/turbo_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/twilight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/twilight.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/twilight_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/twilight_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/twilight_shifted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/twilight_shifted.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/twilight_shifted_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/twilight_shifted_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/viridis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/viridis.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/viridis_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/viridis_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/winter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/winter.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/winter_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/winter_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/wistia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/wistia.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/wistia_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/wistia_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/ylgn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/ylgn.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/ylgn_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/ylgn_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/ylgnbu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/ylgnbu.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/ylgnbu_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/ylgnbu_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/ylorbr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/ylorbr.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/ylorbr_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/ylorbr_r.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/ylorrd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/ylorrd.h -------------------------------------------------------------------------------- /src/eloquent/graphics/colormaps/ylorrd_r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/graphics/colormaps/ylorrd_r.h -------------------------------------------------------------------------------- /src/eloquent/io/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/io/json.h -------------------------------------------------------------------------------- /src/eloquent/io/json/JsonEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/io/json/JsonEncoder.h -------------------------------------------------------------------------------- /src/eloquent/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/macros.h -------------------------------------------------------------------------------- /src/eloquent/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/math.h -------------------------------------------------------------------------------- /src/eloquent/modules/VL53L5CX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/modules/VL53L5CX.h -------------------------------------------------------------------------------- /src/eloquent/modules/vl53l5cx/4x4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/modules/vl53l5cx/4x4.h -------------------------------------------------------------------------------- /src/eloquent/modules/vl53l5cx/8x8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/modules/vl53l5cx/8x8.h -------------------------------------------------------------------------------- /src/eloquent/networking/wifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/networking/wifi.h -------------------------------------------------------------------------------- /src/eloquent/networking/wifi/WifiScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/networking/wifi/WifiScanner.h -------------------------------------------------------------------------------- /src/eloquent/perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/perf.h -------------------------------------------------------------------------------- /src/eloquent/print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/print.h -------------------------------------------------------------------------------- /src/eloquent/tinyml/edgeimpulse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/tinyml/edgeimpulse.h -------------------------------------------------------------------------------- /src/eloquent/tinyml/edgeimpulse/impulse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/tinyml/edgeimpulse/impulse.h -------------------------------------------------------------------------------- /src/eloquent/tinyml/voting/quorum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/tinyml/voting/quorum.h -------------------------------------------------------------------------------- /src/eloquent/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/utils.h -------------------------------------------------------------------------------- /src/eloquent/vision/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/.DS_Store -------------------------------------------------------------------------------- /src/eloquent/vision/camera/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/.DS_Store -------------------------------------------------------------------------------- /src/eloquent/vision/camera/BaseCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/BaseCamera.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/Errors.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/aithinker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/aithinker.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/decoders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/decoders.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/.DS_Store -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/BaseEsp32Camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/BaseEsp32Camera.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/aithinker/gray/96x96.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/aithinker/gray/96x96.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/aithinker/gray/hd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/aithinker/gray/hd.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/aithinker/gray/hvga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/aithinker/gray/hvga.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/aithinker/gray/qcif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/aithinker/gray/qcif.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/aithinker/gray/qqvga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/aithinker/gray/qqvga.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/aithinker/gray/qvga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/aithinker/gray/qvga.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/aithinker/gray/uxga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/aithinker/gray/uxga.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/aithinker/gray/vga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/aithinker/gray/vga.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/aithinker/jpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/aithinker/jpeg.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/aithinker/jpeg/qqvga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/aithinker/jpeg/qqvga.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/aithinker/jpeg/qvga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/aithinker/jpeg/qvga.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/aithinker/jpeg/vga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/aithinker/jpeg/vga.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/eye/gray/96x96.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/eye/gray/96x96.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/eye/gray/hd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/eye/gray/hd.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/eye/gray/hvga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/eye/gray/hvga.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/eye/gray/qcif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/eye/gray/qcif.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/eye/gray/qqvga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/eye/gray/qqvga.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/eye/gray/qvga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/eye/gray/qvga.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/eye/gray/uxga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/eye/gray/uxga.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/eye/gray/vga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/eye/gray/vga.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/m5/gray/96x96.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/m5/gray/96x96.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/m5/gray/hd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/m5/gray/hd.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/m5/gray/hvga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/m5/gray/hvga.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/m5/gray/qcif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/m5/gray/qcif.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/m5/gray/qqvga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/m5/gray/qqvga.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/m5/gray/qvga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/m5/gray/qvga.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/m5/gray/uxga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/m5/gray/uxga.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/m5/gray/vga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/m5/gray/vga.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/m5wide/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/m5wide/.DS_Store -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/m5wide/gray/96x96.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/m5wide/gray/96x96.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/m5wide/gray/hd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/m5wide/gray/hd.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/m5wide/gray/hvga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/m5wide/gray/hvga.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/m5wide/gray/qcif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/m5wide/gray/qcif.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/m5wide/gray/qqvga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/m5wide/gray/qqvga.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/m5wide/gray/qvga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/m5wide/gray/qvga.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/m5wide/gray/uxga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/m5wide/gray/uxga.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/m5wide/gray/vga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/m5wide/gray/vga.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/m5wide/jpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/m5wide/jpeg.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/m5wide/jpeg/qqvga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/m5wide/jpeg/qqvga.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/m5wide/jpeg/qvga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/m5wide/jpeg/qvga.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/m5wide/jpeg/vga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/m5wide/jpeg/vga.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/m5wide/m5wide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/m5wide/m5wide.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/pins/aithinker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/pins/aithinker.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/pins/eye.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/pins/eye.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/pins/m5stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/pins/m5stack.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/pins/m5wide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/pins/m5wide.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/pins/wrover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/pins/wrover.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/webserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/webserver.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/wrover/gray/96x96.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/wrover/gray/96x96.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/wrover/gray/hd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/wrover/gray/hd.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/wrover/gray/hvga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/wrover/gray/hvga.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/wrover/gray/qcif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/wrover/gray/qcif.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/wrover/gray/qqvga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/wrover/gray/qqvga.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/wrover/gray/qvga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/wrover/gray/qvga.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/wrover/gray/uxga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/wrover/gray/uxga.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32/wrover/gray/vga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32/wrover/gray/vga.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/esp32_sensor_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/esp32_sensor_config.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/eye.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/eye.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/m5stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/m5stack.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/m5wide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/m5wide.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/ov767x/BaseOV767x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/ov767x/BaseOV767x.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/ov767x/gray/cif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/ov767x/gray/cif.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/ov767x/gray/qcif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/ov767x/gray/qcif.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/ov767x/gray/qqvga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/ov767x/gray/qqvga.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/ov767x/gray/qvga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/ov767x/gray/qvga.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/ov767x/gray/vga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/ov767x/gray/vga.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/portenta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/portenta.h -------------------------------------------------------------------------------- /src/eloquent/vision/camera/wrover.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/camera/wrover.h -------------------------------------------------------------------------------- /src/eloquent/vision/features/LocalBinaryPattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/features/LocalBinaryPattern.h -------------------------------------------------------------------------------- /src/eloquent/vision/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/image.h -------------------------------------------------------------------------------- /src/eloquent/vision/image/BaseImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/image/BaseImage.h -------------------------------------------------------------------------------- /src/eloquent/vision/image/gray/cif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/image/gray/cif.h -------------------------------------------------------------------------------- /src/eloquent/vision/image/gray/custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/image/gray/custom.h -------------------------------------------------------------------------------- /src/eloquent/vision/image/gray/hd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/image/gray/hd.h -------------------------------------------------------------------------------- /src/eloquent/vision/image/gray/hvga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/image/gray/hvga.h -------------------------------------------------------------------------------- /src/eloquent/vision/image/gray/qcif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/image/gray/qcif.h -------------------------------------------------------------------------------- /src/eloquent/vision/image/gray/qqvga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/image/gray/qqvga.h -------------------------------------------------------------------------------- /src/eloquent/vision/image/gray/qvga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/image/gray/qvga.h -------------------------------------------------------------------------------- /src/eloquent/vision/image/gray/uxga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/image/gray/uxga.h -------------------------------------------------------------------------------- /src/eloquent/vision/image/gray/vga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/image/gray/vga.h -------------------------------------------------------------------------------- /src/eloquent/vision/image/gray/x96x96.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/image/gray/x96x96.h -------------------------------------------------------------------------------- /src/eloquent/vision/image/rgb565.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/image/rgb565.h -------------------------------------------------------------------------------- /src/eloquent/vision/jpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/jpeg.h -------------------------------------------------------------------------------- /src/eloquent/vision/jpeg/JpegBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/jpeg/JpegBuilder.h -------------------------------------------------------------------------------- /src/eloquent/vision/jpeg/JpegEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/jpeg/JpegEncoder.h -------------------------------------------------------------------------------- /src/eloquent/vision/jpeg/bitbank2/BitBankJpegEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/jpeg/bitbank2/BitBankJpegEncoder.h -------------------------------------------------------------------------------- /src/eloquent/vision/jpeg/bitbank2/definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/jpeg/bitbank2/definitions.h -------------------------------------------------------------------------------- /src/eloquent/vision/jpeg/bitbank2/jpeg.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/jpeg/bitbank2/jpeg.inl -------------------------------------------------------------------------------- /src/eloquent/vision/motion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/motion.h -------------------------------------------------------------------------------- /src/eloquent/vision/motion/BaseMotionDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/motion/BaseMotionDetector.h -------------------------------------------------------------------------------- /src/eloquent/vision/motion/naive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/motion/naive.h -------------------------------------------------------------------------------- /src/eloquent/vision/transform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/transform.h -------------------------------------------------------------------------------- /src/eloquent/vision/transform/gray/BilinearResize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/transform/gray/BilinearResize.h -------------------------------------------------------------------------------- /src/eloquent/vision/transform/gray/NearestResize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eloquentarduino/EloquentArduino/HEAD/src/eloquent/vision/transform/gray/NearestResize.h --------------------------------------------------------------------------------