├── .github └── FUNDING.yml ├── LICENSE ├── README.md ├── examples ├── dot1-portentaH7-examples │ ├── dot10-arduino-pro-update-bootloader │ │ └── dot10-arduino-pro-update-bootloader.ino │ ├── dot11-hello-blink │ │ └── dot11-hello-blink.ino │ ├── dot12-utilities │ │ ├── dot121-clean-both-cores │ │ │ └── dot121-clean-both-cores.ino │ │ ├── dot122-dual-easy │ │ │ └── dot122-dual-easy.ino │ │ ├── dot123-efficient-dual-core │ │ │ └── dot123-efficient-dual-core.ino │ │ └── dot124-blank-dual-core-template │ │ │ └── dot124-blank-dual-core-template.ino │ ├── dot13-MBED │ │ ├── dot131-mbed-blink │ │ │ └── dot131-mbed-blink.ino │ │ ├── dot132-mbed-namespace │ │ │ └── dot132-mbed-namespace.ino │ │ ├── dot133-digital-in-out │ │ │ └── dot133-digital-in-out.ino │ │ ├── dot134-mbed-thread │ │ │ └── dot134-mbed-thread.ino │ │ └── dot135-mbed-portenta-memory │ │ │ └── dot135-mbed-portenta-memory.ino │ ├── dot14-blink-both-cores │ │ └── dot14-blink-both-cores.ino │ ├── dot15-RPC │ │ ├── dot151-print-from-m4-core-rpc │ │ │ └── dot151-print-from-m4-core-rpc.ino │ │ └── dot152-RPC-struct │ │ │ └── dot152-RPC-struct.ino │ ├── dot16-arduino-pro-setup │ │ └── dot16-arduino-pro-setup.ino │ ├── dot17-arduino-pro-debugger-lauterbach │ │ └── dot17-arduino-pro-debugger-lauterbach.ino │ ├── dot18-wifi-webserver │ │ ├── dot181-wifi-webserver │ │ │ └── dot181-wifi-webserver.ino │ │ ├── dot182-async-web-server │ │ │ └── dot182-async-web-server.ino │ │ ├── dot183-https-to-adafruit │ │ │ └── dot183-https-to-adafruit.ino │ │ ├── dot184-mqtt-client-to-adafruit │ │ │ └── dot184-mqtt-client-to-adafruit.ino │ │ ├── dot185-multi-wifi-reconnect-khoih │ │ │ ├── defines.h │ │ │ └── dot185-multi-wifi-reconnect-khoih.ino │ │ └── dot186-wifisslclient-websocket │ │ │ └── dot186-wifisslclient-websocket.ino │ ├── dot19-cores-uart-serial-com │ │ ├── dot191-uart-m4-to-m7 │ │ │ └── dot191-uart-m4-to-m7.ino │ │ ├── dot192-uart-m7-to-m4 │ │ │ └── dot192-uart-m7-to-m4.ino │ │ ├── dot193-both-cores-timer │ │ │ └── dot193-both-cores-timer.ino │ │ ├── dot195-simple-to-m4 │ │ │ └── dot195-simple-to-m4.ino │ │ ├── dot196-simple-to-m7 │ │ │ └── dot196-simple-to-m7.ino │ │ ├── dot197-arduinoJSON-m4-to-m7 │ │ │ └── dot197-arduinoJSON-m4-to-m7.ino │ │ ├── dot198-uart-serialtransfer │ │ │ └── dot198-uart-serialtransfer.ino │ │ └── dot63-NOT-UART-sram-share-core-memory │ │ │ └── dot63-NOT-UART-sram-share-core-memory.ino │ ├── dot1a-DAC-to-ADC │ │ └── dot1a-DAC-to-ADC.ino │ ├── dot1b-mqtt-wifi-broker │ │ └── dot1b-mqtt-wifi-broker.ino │ ├── dot1c-simple-timer │ │ └── dot1c-simple-timer.ino │ └── dot1d-Serial-ArduinoJSON │ │ └── dot1d-Serial-ArduinoJSON.ino ├── dot2-portenta-h7-with-accessories │ ├── dot21-sensors │ │ ├── dot211-any-variable-resistor-sensor │ │ │ └── dot211-any-variable-resistor-sensor.ino │ │ ├── dot212-pixy2-SPI │ │ │ ├── PIDLoop.h │ │ │ ├── Pixy2.h │ │ │ ├── Pixy2CCC.h │ │ │ ├── Pixy2I2C.h │ │ │ ├── Pixy2Line.h │ │ │ ├── Pixy2SPI_SS.h │ │ │ ├── Pixy2UART.h │ │ │ ├── Pixy2Video.h │ │ │ ├── TPixy2.h │ │ │ ├── dot212-pixy2-SPI.ino │ │ │ └── keywords.txt │ │ ├── dot213-I2C-with-nano33ble │ │ │ ├── dot2131-I2C-slave │ │ │ │ └── dot2131-I2C-slave.ino │ │ │ └── dot2132-I2C-potenta-master │ │ │ │ └── dot2132-I2C-potenta-master.ino │ │ ├── dot214-RangeFinder │ │ │ └── dot214-RangeFinder.ino │ │ ├── dot215-grove-gps-air530 │ │ │ └── dot215-grove-gps-air530.ino │ │ ├── dot216-fingerprint-scanner │ │ │ ├── dot216-fingerprint-scanner.ino │ │ │ └── extra │ │ │ │ └── enroll.ino │ │ ├── dot217-FSLP │ │ │ └── dot217-FSLP.ino │ │ ├── dot218-TFTV2-touchScreen │ │ │ └── dot218-TFTV2-touchScreen.ino │ │ └── dot219-gravity-tds-liquid-conductivity │ │ │ ├── dot2191-tds-basic │ │ │ └── dot2191-tds-basic.ino │ │ │ └── dot2192-tds-with-grove-oled │ │ │ └── dot2192-tds-with-grove-oled.ino │ ├── dot22-actuators │ │ ├── dot221-servo │ │ │ └── dot221-servo.ino │ │ ├── dot222-I2C-grove-OLED │ │ │ └── dot222-I2C-grove-OLED.ino │ │ ├── dot223-external-led │ │ │ └── dot223-external-led.ino │ │ ├── dot224-pwm-transistor │ │ │ └── dot224-pwm-transistor.ino │ │ ├── dot225-stepper-motor │ │ │ └── dot225-stepper-motor.ino │ │ ├── dot226-small-dual-dc-motor-driver │ │ │ └── dot226-small-dual-dc-motor-driver.ino │ │ ├── dot227-big-dc-motor-driver │ │ │ └── dot227-big-dc-motor-driver.ino │ │ ├── dot228-button-control-led │ │ │ └── dot228-button-control-led.ino │ │ ├── dot229-128x128-gray-oled │ │ │ └── dot229-128x128-gray-oled.ino │ │ └── dot22a-blink-an-led │ │ │ └── dot22a-blink-an-led.ino │ ├── dot23-portenta-pro-usb-host │ │ └── dot23-portenta-pro-usb-host.ino │ └── dot24-arduino-pro-LVGL-monitor │ │ └── dot24-arduino-pro-LVGL-monitor.ino ├── dot3-portenta-vision-shields │ ├── dot31-ethernet-specific │ │ ├── dot311-ethernet-webServer │ │ │ └── dot311-ethernet-webServer.ino │ │ ├── dot312-mqtt-ethernet-broker │ │ │ └── dot312-mqtt-ethernet-broker.ino │ │ ├── dot313-insecure-http-to-adafruit │ │ │ └── dot313-insecure-http-to-adafruit.ino │ │ ├── dot314-insecure-mqtt-client-to-adafruit │ │ │ └── dot314-insecure-mqtt-client-to-adafruit.ino │ │ ├── dot315-ethernet-secure-adafruit-https │ │ │ └── dot315-ethernet-secure-adafruit-https.ino │ │ └── dot316-ethernet-secure-mqtt-to-adafruit │ │ │ └── dot316-ethernet-secure-mqtt-to-adafruit.ino │ ├── dot32-sd-card-text │ │ └── dot32-sd-card-text.ino │ ├── dot33-lorawan-specific │ │ ├── dot331-arduino-pro-ttn-lorawan-europe │ │ │ └── dot331-arduino-pro-ttn-lorawan-europe.ino │ │ ├── dot332-helium-cayenne-us915 │ │ │ └── dot332-helium-cayenne-us915.ino │ │ ├── dot333-helium-us915-cayenne-timer │ │ │ └── dot333-helium-us915-cayenne-timer.ino │ │ ├── dot334-us915-helium-mqtt-adafruit-connect │ │ │ └── dot334-us915-helium-mqtt-adafruit-connect.ino │ │ └── dot335-helium-http-adafruit-connect │ │ │ └── dot335-helium-http-adafruit-connect.ino │ ├── dot34-pure-lora │ │ ├── dot341-lora-update-standalone │ │ │ ├── dev_table.c │ │ │ ├── dot341-lora-update-standalone.ino │ │ │ ├── fw.h │ │ │ ├── serial_arduino.cpp │ │ │ ├── serial_arduino.h │ │ │ ├── stm32.cpp │ │ │ ├── stm32.h │ │ │ ├── utils.c │ │ │ └── utils.h │ │ ├── dot342-serial-lora │ │ │ └── dot342-serial-lora.ino │ │ └── dot343-extras │ │ │ ├── dot3431-instructions │ │ │ └── dot3431-instructions.ino │ │ │ ├── dot3432-portenta-murata-bridge │ │ │ └── dot3432-portenta-murata-bridge.ino │ │ │ ├── dot3433-murata-lora-grumpyoldpizza │ │ │ └── dot3433-murata-lora-grumpyoldpizza.ino │ │ │ └── dot3434-portenta-serial-lora │ │ │ └── dot3434-portenta-serial-lora.ino │ ├── dot35-camera-and-oled │ │ ├── dot351-camera-oled-regular │ │ │ └── dot351-camera-oled-regular.ino │ │ ├── dot352-carmera-oled-heap │ │ │ └── dot352-carmera-oled-heap.ino │ │ └── dot353-camera-oled-sdram │ │ │ └── dot353-camera-oled-sdram.ino │ └── dot36-camera-png-to-web │ │ ├── dot361-camera-png-to-web │ │ └── dot361-camera-png-to-web.ino │ │ ├── dot362-png-to-sd-card │ │ └── dot362-png-to-sd-card.ino │ │ ├── dot363-camera-png-to-websocket │ │ └── dot363-camera-png-to-websocket.ino │ │ ├── dot364-camera-activated-websocket-to-sd-card │ │ └── dot364-camera-activated-websocket-to-sd-card.ino │ │ └── dot365-sd-card-html-and-png-to-local-web │ │ └── dot365-sd-card-html-and-png-to-local-web.ino ├── dot4-portenta-breakout-board │ ├── dot41-mbed │ │ ├── dot411-mbed-gpio │ │ │ └── d-a-a-mbed-gpio.ino │ │ ├── dot412-mbed-pwm │ │ │ └── dot412-mbed-pwm.ino │ │ ├── dot413-mbed-analog-pins │ │ │ └── dot413-mbed-analog-pins.ino │ │ ├── dot414-serial-UART │ │ │ ├── dot4141-uart-other-arduino │ │ │ │ └── dot4141-uart-other-arduino.ino │ │ │ ├── dot4142-uart-portenta │ │ │ │ └── dot4142-uart-portenta.ino │ │ │ ├── dot4143-all-uart │ │ │ │ └── dot4143-all-uart.ino │ │ │ └── dot4144-uart-fast-count │ │ │ │ └── dot4144-uart-fast-count.ino │ │ └── dot415-serial-I2C │ │ │ ├── dot4151-serial-I2C-master-all │ │ │ └── dot4151-serial-I2C-master-all.ino │ │ │ └── dot4152-serial-I2C-slave │ │ │ └── dot4152-serial-I2C-slave.ino │ ├── dot42-UART1-M4-to-M7 │ │ └── dot42-UART1-M4-to-M7.ino │ ├── dot43-ArduinoJSON-UART │ │ └── dot43-ArduinoJSON-UART.ino │ ├── dot44-serialTransfer-UART │ │ └── dot44-serialTransfer-UART.ino │ └── dot45-I2C │ │ └── dot45-I2C.ino ├── dot5-portenta-machine-learning │ ├── dot51-portenta-edge-impulse-ml │ │ ├── dot511-vision-classify │ │ │ ├── dot5112-simplified-vision │ │ │ │ ├── dot5112-simplified-vision.ino │ │ │ │ └── edge-impulse-advanced-v2.h │ │ │ ├── dot5113-show-top-classification │ │ │ │ ├── dot5113-show-top-classification.ino │ │ │ │ └── edge-impulse-advanced-v2.h │ │ │ ├── dot5114-vision-oled │ │ │ │ ├── dot5114-vision-oled.ino │ │ │ │ └── edge-impulse-advanced-v2.h │ │ │ ├── dot5115-classification-count │ │ │ │ ├── dot5115-classification-count.ino │ │ │ │ └── edge-impulse-advanced-v2.h │ │ │ └── dot5116-vision-mqtt-helium-counts │ │ │ │ ├── dot5116-vision-mqtt-helium-counts.ino │ │ │ │ └── edge-impulse-advanced-v2.h │ │ ├── dot511z-vision-shield-old-before-2-8-0 │ │ │ ├── dot5112-simplified-vision │ │ │ │ ├── dot5112-simplified-vision.ino │ │ │ │ └── edge-impulse-advanced.h │ │ │ ├── dot5113-show-top-classification │ │ │ │ ├── dot5113-show-top-classification.ino │ │ │ │ └── edge-impulse-advanced.h │ │ │ ├── dot5114-vision-oled │ │ │ │ ├── dot5114-vision-oled.ino │ │ │ │ └── edge-impulse-advanced.h │ │ │ └── dot5115-classification-count │ │ │ │ ├── dot5115-classification-count.ino │ │ │ │ └── edge-impulse-advanced.h │ │ ├── dot512-with-accessories │ │ │ └── dot5121-accelerometer │ │ │ │ └── dot51211-WORDS │ │ │ │ └── dot51211-WORDS.ino │ │ ├── dot513-utilities │ │ │ ├── dot5131-json-sd-card-upload │ │ │ │ └── dot5131-json-sd-card-upload.ino │ │ │ ├── dot5132-all-data-one-csv │ │ │ │ └── dot5132-all-data-one-csv.ino │ │ │ ├── dot5133-multi-csv-timestamp │ │ │ │ └── dot5133-multi-csv-timestamp.ino │ │ │ ├── dot5134-multi-csv-only-data │ │ │ │ └── dot5134-multi-csv-only-data.ino │ │ │ └── dot5135-easy-data-forwarder │ │ │ │ └── dot5135-easy-data-forwarder.ino │ │ └── dot514-vision-fomo │ │ │ ├── dot5142-simplified-vision │ │ │ ├── dot5142-simplified-vision.ino │ │ │ └── edge-impulse-advanced-v2.h │ │ │ ├── dot5143-show-top-classification │ │ │ ├── dot5143-show-top-classification.ino │ │ │ └── edge-impulse-advanced-v2.h │ │ │ ├── dot5144-vision-oled │ │ │ ├── dot5144-vision-oled.ino │ │ │ └── edge-impulse-advanced-v2.h │ │ │ ├── dot5145-classification-count │ │ │ ├── dot5145-classification-count.ino │ │ │ └── edge-impulse-advanced-v2.h │ │ │ ├── dot5146-oled-count │ │ │ ├── dot5146-oled-count.ino │ │ │ └── edge-impulse-advanced-v2.h │ │ │ ├── dot5147-oled-fomo-more-than-10 │ │ │ ├── dot5147-oled-fomo-more-than-10.ino │ │ │ └── edge-impulse-advanced-v2.h │ │ │ └── dot5148-advanced-fomo-individual-count │ │ │ ├── dot5148-advanced-fomo-individual-count.ino │ │ │ └── edge-impulse-advanced-v2.h │ ├── dot52-portenta-rocksetta-ml │ │ └── dot521-rocksetta-hello-ml-sine │ │ │ ├── dot521-rocksetta-hello-ml-sine.ino │ │ │ ├── model.h │ │ │ └── rocksetta.h │ ├── dot53-portenta-openMV-ml │ │ └── dot53-portenta-openMV-ml.ino │ ├── dot54-aruino-pro-ml-tutorial │ │ └── dot54-aruino-pro-ml-tutorial.ino │ └── dot55-robocar │ │ └── dot551-robocar-v1 │ │ ├── dot551-robocar-v1.ino │ │ └── edge-impulse-advanced-v2.h ├── dot6-portenta-advanced │ ├── dot61-arduino-pro-flash-memory │ │ └── dot61-arduino-pro-flash-memory.ino │ ├── dot62-arduino-pro-key-value-pair │ │ └── dot62-arduino-pro-key-value-pair.ino │ ├── dot63-sram-share-core-memory │ │ └── dot63-sram-share-core-memory.ino │ └── dot64-pin-names │ │ ├── README.md │ │ └── dot64-pin-names.ino ├── dot7-coding-curriculum │ ├── dot71-sos │ │ └── dot71-sos.ino │ ├── dot72-string-input-output │ │ └── dot72-string-input-output.ino │ ├── dot73-simple-variables │ │ └── dot73-simple-variables.ino │ ├── dot74-for-loop │ │ └── dot74-for-loop.ino │ ├── dot75-if-statement │ │ └── dot75-if-statement.ino │ ├── dot76-arrays │ │ └── dot76-arrays.ino │ ├── dot77-struct │ │ └── dot77-struct.ino │ ├── dot78-functions │ │ └── dot78-functions.ino │ └── dot79-classes-objects │ │ └── dot79-classes-objects.ino └── dot8-portenta-bugs │ ├── dot80-gotchas │ └── dot80-gotchas.ino │ ├── dot81-bugs-mbed-board-version-1.3.2 │ └── dot81-bugs-mbed-board-version-1.3.2.ino │ ├── dot82-bugs-mbed-board-version-2-0-0 │ └── dot82-bugs-mbed-board-version-2-0-0.ino │ └── dot83-bugs-mbed-board-version-3-0-1 │ └── dot83-bugs-mbed-board-version-3-0-1.ino ├── keywords.txt ├── library.json ├── library.properties ├── media ├── README.md └── portenta-breakout-board.png ├── murata-lora-module.md ├── notes.md ├── pricelist.md ├── research-not-ready ├── README.md ├── Serial1.ino ├── range-finder-draft01.ino ├── range-finder-draft02.ino └── serial-values.md ├── src └── portenta-pro-community-solutions.h └── zipped-libraries ├── README.md ├── edge-Impulse ├── arduino-exported │ ├── Portenta-Camera │ │ ├── README.md │ │ ├── anger-contempt-fear-happy-sadness-surprise-arduino-1.0.8.zip │ │ ├── ei-ei-fomo-v21-just-eye-arduino-1.0.2.zip │ │ ├── ei-ei-portenta-42-try-96x96-gray-better-trained-arduino-1.0.60.zip │ │ ├── ei-ei-v20unknown-1popgoright-2watergoleft-3fast-v2-0-0-arduino-1.0.7.zip │ │ ├── ei-ei-v25-fomo-eyes-shades-arduino-1.0.2.zip │ │ └── ei-ei-v6-0-1-fomo-2.8.0mbed-96x96-vision-1pop-arduino-1.0.9.zip │ └── Portenta-microphone │ │ └── README.md └── cpp-exported │ ├── camera-impulse │ ├── README.md │ └── anger-contempt-fear-happy-sadness-surprise-v7.zip │ └── microphone-impulse │ └── README.md └── w6-words_inference.zip /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/README.md -------------------------------------------------------------------------------- /examples/dot1-portentaH7-examples/dot10-arduino-pro-update-bootloader/dot10-arduino-pro-update-bootloader.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot1-portentaH7-examples/dot10-arduino-pro-update-bootloader/dot10-arduino-pro-update-bootloader.ino -------------------------------------------------------------------------------- /examples/dot1-portentaH7-examples/dot11-hello-blink/dot11-hello-blink.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot1-portentaH7-examples/dot11-hello-blink/dot11-hello-blink.ino -------------------------------------------------------------------------------- /examples/dot1-portentaH7-examples/dot12-utilities/dot121-clean-both-cores/dot121-clean-both-cores.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot1-portentaH7-examples/dot12-utilities/dot121-clean-both-cores/dot121-clean-both-cores.ino -------------------------------------------------------------------------------- /examples/dot1-portentaH7-examples/dot12-utilities/dot122-dual-easy/dot122-dual-easy.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot1-portentaH7-examples/dot12-utilities/dot122-dual-easy/dot122-dual-easy.ino -------------------------------------------------------------------------------- /examples/dot1-portentaH7-examples/dot12-utilities/dot123-efficient-dual-core/dot123-efficient-dual-core.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot1-portentaH7-examples/dot12-utilities/dot123-efficient-dual-core/dot123-efficient-dual-core.ino -------------------------------------------------------------------------------- /examples/dot1-portentaH7-examples/dot12-utilities/dot124-blank-dual-core-template/dot124-blank-dual-core-template.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot1-portentaH7-examples/dot12-utilities/dot124-blank-dual-core-template/dot124-blank-dual-core-template.ino -------------------------------------------------------------------------------- /examples/dot1-portentaH7-examples/dot13-MBED/dot131-mbed-blink/dot131-mbed-blink.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot1-portentaH7-examples/dot13-MBED/dot131-mbed-blink/dot131-mbed-blink.ino -------------------------------------------------------------------------------- /examples/dot1-portentaH7-examples/dot13-MBED/dot132-mbed-namespace/dot132-mbed-namespace.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot1-portentaH7-examples/dot13-MBED/dot132-mbed-namespace/dot132-mbed-namespace.ino -------------------------------------------------------------------------------- /examples/dot1-portentaH7-examples/dot13-MBED/dot133-digital-in-out/dot133-digital-in-out.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot1-portentaH7-examples/dot13-MBED/dot133-digital-in-out/dot133-digital-in-out.ino -------------------------------------------------------------------------------- /examples/dot1-portentaH7-examples/dot13-MBED/dot134-mbed-thread/dot134-mbed-thread.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot1-portentaH7-examples/dot13-MBED/dot134-mbed-thread/dot134-mbed-thread.ino -------------------------------------------------------------------------------- /examples/dot1-portentaH7-examples/dot13-MBED/dot135-mbed-portenta-memory/dot135-mbed-portenta-memory.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot1-portentaH7-examples/dot13-MBED/dot135-mbed-portenta-memory/dot135-mbed-portenta-memory.ino -------------------------------------------------------------------------------- /examples/dot1-portentaH7-examples/dot14-blink-both-cores/dot14-blink-both-cores.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot1-portentaH7-examples/dot14-blink-both-cores/dot14-blink-both-cores.ino -------------------------------------------------------------------------------- /examples/dot1-portentaH7-examples/dot15-RPC/dot151-print-from-m4-core-rpc/dot151-print-from-m4-core-rpc.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot1-portentaH7-examples/dot15-RPC/dot151-print-from-m4-core-rpc/dot151-print-from-m4-core-rpc.ino -------------------------------------------------------------------------------- /examples/dot1-portentaH7-examples/dot15-RPC/dot152-RPC-struct/dot152-RPC-struct.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot1-portentaH7-examples/dot15-RPC/dot152-RPC-struct/dot152-RPC-struct.ino -------------------------------------------------------------------------------- /examples/dot1-portentaH7-examples/dot16-arduino-pro-setup/dot16-arduino-pro-setup.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot1-portentaH7-examples/dot16-arduino-pro-setup/dot16-arduino-pro-setup.ino -------------------------------------------------------------------------------- /examples/dot1-portentaH7-examples/dot17-arduino-pro-debugger-lauterbach/dot17-arduino-pro-debugger-lauterbach.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot1-portentaH7-examples/dot17-arduino-pro-debugger-lauterbach/dot17-arduino-pro-debugger-lauterbach.ino -------------------------------------------------------------------------------- /examples/dot1-portentaH7-examples/dot18-wifi-webserver/dot181-wifi-webserver/dot181-wifi-webserver.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot1-portentaH7-examples/dot18-wifi-webserver/dot181-wifi-webserver/dot181-wifi-webserver.ino -------------------------------------------------------------------------------- /examples/dot1-portentaH7-examples/dot18-wifi-webserver/dot182-async-web-server/dot182-async-web-server.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot1-portentaH7-examples/dot18-wifi-webserver/dot182-async-web-server/dot182-async-web-server.ino -------------------------------------------------------------------------------- /examples/dot1-portentaH7-examples/dot18-wifi-webserver/dot183-https-to-adafruit/dot183-https-to-adafruit.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot1-portentaH7-examples/dot18-wifi-webserver/dot183-https-to-adafruit/dot183-https-to-adafruit.ino -------------------------------------------------------------------------------- /examples/dot1-portentaH7-examples/dot18-wifi-webserver/dot184-mqtt-client-to-adafruit/dot184-mqtt-client-to-adafruit.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot1-portentaH7-examples/dot18-wifi-webserver/dot184-mqtt-client-to-adafruit/dot184-mqtt-client-to-adafruit.ino -------------------------------------------------------------------------------- /examples/dot1-portentaH7-examples/dot18-wifi-webserver/dot185-multi-wifi-reconnect-khoih/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot1-portentaH7-examples/dot18-wifi-webserver/dot185-multi-wifi-reconnect-khoih/defines.h -------------------------------------------------------------------------------- /examples/dot1-portentaH7-examples/dot18-wifi-webserver/dot185-multi-wifi-reconnect-khoih/dot185-multi-wifi-reconnect-khoih.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot1-portentaH7-examples/dot18-wifi-webserver/dot185-multi-wifi-reconnect-khoih/dot185-multi-wifi-reconnect-khoih.ino -------------------------------------------------------------------------------- /examples/dot1-portentaH7-examples/dot18-wifi-webserver/dot186-wifisslclient-websocket/dot186-wifisslclient-websocket.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot1-portentaH7-examples/dot18-wifi-webserver/dot186-wifisslclient-websocket/dot186-wifisslclient-websocket.ino -------------------------------------------------------------------------------- /examples/dot1-portentaH7-examples/dot19-cores-uart-serial-com/dot191-uart-m4-to-m7/dot191-uart-m4-to-m7.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot1-portentaH7-examples/dot19-cores-uart-serial-com/dot191-uart-m4-to-m7/dot191-uart-m4-to-m7.ino -------------------------------------------------------------------------------- /examples/dot1-portentaH7-examples/dot19-cores-uart-serial-com/dot192-uart-m7-to-m4/dot192-uart-m7-to-m4.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot1-portentaH7-examples/dot19-cores-uart-serial-com/dot192-uart-m7-to-m4/dot192-uart-m7-to-m4.ino -------------------------------------------------------------------------------- /examples/dot1-portentaH7-examples/dot19-cores-uart-serial-com/dot193-both-cores-timer/dot193-both-cores-timer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot1-portentaH7-examples/dot19-cores-uart-serial-com/dot193-both-cores-timer/dot193-both-cores-timer.ino -------------------------------------------------------------------------------- /examples/dot1-portentaH7-examples/dot19-cores-uart-serial-com/dot195-simple-to-m4/dot195-simple-to-m4.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot1-portentaH7-examples/dot19-cores-uart-serial-com/dot195-simple-to-m4/dot195-simple-to-m4.ino -------------------------------------------------------------------------------- /examples/dot1-portentaH7-examples/dot19-cores-uart-serial-com/dot196-simple-to-m7/dot196-simple-to-m7.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot1-portentaH7-examples/dot19-cores-uart-serial-com/dot196-simple-to-m7/dot196-simple-to-m7.ino -------------------------------------------------------------------------------- /examples/dot1-portentaH7-examples/dot19-cores-uart-serial-com/dot197-arduinoJSON-m4-to-m7/dot197-arduinoJSON-m4-to-m7.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot1-portentaH7-examples/dot19-cores-uart-serial-com/dot197-arduinoJSON-m4-to-m7/dot197-arduinoJSON-m4-to-m7.ino -------------------------------------------------------------------------------- /examples/dot1-portentaH7-examples/dot19-cores-uart-serial-com/dot198-uart-serialtransfer/dot198-uart-serialtransfer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot1-portentaH7-examples/dot19-cores-uart-serial-com/dot198-uart-serialtransfer/dot198-uart-serialtransfer.ino -------------------------------------------------------------------------------- /examples/dot1-portentaH7-examples/dot19-cores-uart-serial-com/dot63-NOT-UART-sram-share-core-memory/dot63-NOT-UART-sram-share-core-memory.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot1-portentaH7-examples/dot19-cores-uart-serial-com/dot63-NOT-UART-sram-share-core-memory/dot63-NOT-UART-sram-share-core-memory.ino -------------------------------------------------------------------------------- /examples/dot1-portentaH7-examples/dot1a-DAC-to-ADC/dot1a-DAC-to-ADC.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot1-portentaH7-examples/dot1a-DAC-to-ADC/dot1a-DAC-to-ADC.ino -------------------------------------------------------------------------------- /examples/dot1-portentaH7-examples/dot1b-mqtt-wifi-broker/dot1b-mqtt-wifi-broker.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot1-portentaH7-examples/dot1b-mqtt-wifi-broker/dot1b-mqtt-wifi-broker.ino -------------------------------------------------------------------------------- /examples/dot1-portentaH7-examples/dot1c-simple-timer/dot1c-simple-timer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot1-portentaH7-examples/dot1c-simple-timer/dot1c-simple-timer.ino -------------------------------------------------------------------------------- /examples/dot1-portentaH7-examples/dot1d-Serial-ArduinoJSON/dot1d-Serial-ArduinoJSON.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot1-portentaH7-examples/dot1d-Serial-ArduinoJSON/dot1d-Serial-ArduinoJSON.ino -------------------------------------------------------------------------------- /examples/dot2-portenta-h7-with-accessories/dot21-sensors/dot211-any-variable-resistor-sensor/dot211-any-variable-resistor-sensor.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot2-portenta-h7-with-accessories/dot21-sensors/dot211-any-variable-resistor-sensor/dot211-any-variable-resistor-sensor.ino -------------------------------------------------------------------------------- /examples/dot2-portenta-h7-with-accessories/dot21-sensors/dot212-pixy2-SPI/PIDLoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot2-portenta-h7-with-accessories/dot21-sensors/dot212-pixy2-SPI/PIDLoop.h -------------------------------------------------------------------------------- /examples/dot2-portenta-h7-with-accessories/dot21-sensors/dot212-pixy2-SPI/Pixy2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot2-portenta-h7-with-accessories/dot21-sensors/dot212-pixy2-SPI/Pixy2.h -------------------------------------------------------------------------------- /examples/dot2-portenta-h7-with-accessories/dot21-sensors/dot212-pixy2-SPI/Pixy2CCC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot2-portenta-h7-with-accessories/dot21-sensors/dot212-pixy2-SPI/Pixy2CCC.h -------------------------------------------------------------------------------- /examples/dot2-portenta-h7-with-accessories/dot21-sensors/dot212-pixy2-SPI/Pixy2I2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot2-portenta-h7-with-accessories/dot21-sensors/dot212-pixy2-SPI/Pixy2I2C.h -------------------------------------------------------------------------------- /examples/dot2-portenta-h7-with-accessories/dot21-sensors/dot212-pixy2-SPI/Pixy2Line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot2-portenta-h7-with-accessories/dot21-sensors/dot212-pixy2-SPI/Pixy2Line.h -------------------------------------------------------------------------------- /examples/dot2-portenta-h7-with-accessories/dot21-sensors/dot212-pixy2-SPI/Pixy2SPI_SS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot2-portenta-h7-with-accessories/dot21-sensors/dot212-pixy2-SPI/Pixy2SPI_SS.h -------------------------------------------------------------------------------- /examples/dot2-portenta-h7-with-accessories/dot21-sensors/dot212-pixy2-SPI/Pixy2UART.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot2-portenta-h7-with-accessories/dot21-sensors/dot212-pixy2-SPI/Pixy2UART.h -------------------------------------------------------------------------------- /examples/dot2-portenta-h7-with-accessories/dot21-sensors/dot212-pixy2-SPI/Pixy2Video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot2-portenta-h7-with-accessories/dot21-sensors/dot212-pixy2-SPI/Pixy2Video.h -------------------------------------------------------------------------------- /examples/dot2-portenta-h7-with-accessories/dot21-sensors/dot212-pixy2-SPI/TPixy2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot2-portenta-h7-with-accessories/dot21-sensors/dot212-pixy2-SPI/TPixy2.h -------------------------------------------------------------------------------- /examples/dot2-portenta-h7-with-accessories/dot21-sensors/dot212-pixy2-SPI/dot212-pixy2-SPI.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot2-portenta-h7-with-accessories/dot21-sensors/dot212-pixy2-SPI/dot212-pixy2-SPI.ino -------------------------------------------------------------------------------- /examples/dot2-portenta-h7-with-accessories/dot21-sensors/dot212-pixy2-SPI/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot2-portenta-h7-with-accessories/dot21-sensors/dot212-pixy2-SPI/keywords.txt -------------------------------------------------------------------------------- /examples/dot2-portenta-h7-with-accessories/dot21-sensors/dot213-I2C-with-nano33ble/dot2131-I2C-slave/dot2131-I2C-slave.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot2-portenta-h7-with-accessories/dot21-sensors/dot213-I2C-with-nano33ble/dot2131-I2C-slave/dot2131-I2C-slave.ino -------------------------------------------------------------------------------- /examples/dot2-portenta-h7-with-accessories/dot21-sensors/dot213-I2C-with-nano33ble/dot2132-I2C-potenta-master/dot2132-I2C-potenta-master.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot2-portenta-h7-with-accessories/dot21-sensors/dot213-I2C-with-nano33ble/dot2132-I2C-potenta-master/dot2132-I2C-potenta-master.ino -------------------------------------------------------------------------------- /examples/dot2-portenta-h7-with-accessories/dot21-sensors/dot214-RangeFinder/dot214-RangeFinder.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot2-portenta-h7-with-accessories/dot21-sensors/dot214-RangeFinder/dot214-RangeFinder.ino -------------------------------------------------------------------------------- /examples/dot2-portenta-h7-with-accessories/dot21-sensors/dot215-grove-gps-air530/dot215-grove-gps-air530.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot2-portenta-h7-with-accessories/dot21-sensors/dot215-grove-gps-air530/dot215-grove-gps-air530.ino -------------------------------------------------------------------------------- /examples/dot2-portenta-h7-with-accessories/dot21-sensors/dot216-fingerprint-scanner/dot216-fingerprint-scanner.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot2-portenta-h7-with-accessories/dot21-sensors/dot216-fingerprint-scanner/dot216-fingerprint-scanner.ino -------------------------------------------------------------------------------- /examples/dot2-portenta-h7-with-accessories/dot21-sensors/dot216-fingerprint-scanner/extra/enroll.ino: -------------------------------------------------------------------------------- 1 | sdff 2 | -------------------------------------------------------------------------------- /examples/dot2-portenta-h7-with-accessories/dot21-sensors/dot217-FSLP/dot217-FSLP.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot2-portenta-h7-with-accessories/dot21-sensors/dot217-FSLP/dot217-FSLP.ino -------------------------------------------------------------------------------- /examples/dot2-portenta-h7-with-accessories/dot21-sensors/dot218-TFTV2-touchScreen/dot218-TFTV2-touchScreen.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot2-portenta-h7-with-accessories/dot21-sensors/dot218-TFTV2-touchScreen/dot218-TFTV2-touchScreen.ino -------------------------------------------------------------------------------- /examples/dot2-portenta-h7-with-accessories/dot21-sensors/dot219-gravity-tds-liquid-conductivity/dot2191-tds-basic/dot2191-tds-basic.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot2-portenta-h7-with-accessories/dot21-sensors/dot219-gravity-tds-liquid-conductivity/dot2191-tds-basic/dot2191-tds-basic.ino -------------------------------------------------------------------------------- /examples/dot2-portenta-h7-with-accessories/dot21-sensors/dot219-gravity-tds-liquid-conductivity/dot2192-tds-with-grove-oled/dot2192-tds-with-grove-oled.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot2-portenta-h7-with-accessories/dot21-sensors/dot219-gravity-tds-liquid-conductivity/dot2192-tds-with-grove-oled/dot2192-tds-with-grove-oled.ino -------------------------------------------------------------------------------- /examples/dot2-portenta-h7-with-accessories/dot22-actuators/dot221-servo/dot221-servo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot2-portenta-h7-with-accessories/dot22-actuators/dot221-servo/dot221-servo.ino -------------------------------------------------------------------------------- /examples/dot2-portenta-h7-with-accessories/dot22-actuators/dot222-I2C-grove-OLED/dot222-I2C-grove-OLED.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot2-portenta-h7-with-accessories/dot22-actuators/dot222-I2C-grove-OLED/dot222-I2C-grove-OLED.ino -------------------------------------------------------------------------------- /examples/dot2-portenta-h7-with-accessories/dot22-actuators/dot223-external-led/dot223-external-led.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot2-portenta-h7-with-accessories/dot22-actuators/dot223-external-led/dot223-external-led.ino -------------------------------------------------------------------------------- /examples/dot2-portenta-h7-with-accessories/dot22-actuators/dot224-pwm-transistor/dot224-pwm-transistor.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot2-portenta-h7-with-accessories/dot22-actuators/dot224-pwm-transistor/dot224-pwm-transistor.ino -------------------------------------------------------------------------------- /examples/dot2-portenta-h7-with-accessories/dot22-actuators/dot225-stepper-motor/dot225-stepper-motor.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot2-portenta-h7-with-accessories/dot22-actuators/dot225-stepper-motor/dot225-stepper-motor.ino -------------------------------------------------------------------------------- /examples/dot2-portenta-h7-with-accessories/dot22-actuators/dot226-small-dual-dc-motor-driver/dot226-small-dual-dc-motor-driver.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot2-portenta-h7-with-accessories/dot22-actuators/dot226-small-dual-dc-motor-driver/dot226-small-dual-dc-motor-driver.ino -------------------------------------------------------------------------------- /examples/dot2-portenta-h7-with-accessories/dot22-actuators/dot227-big-dc-motor-driver/dot227-big-dc-motor-driver.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot2-portenta-h7-with-accessories/dot22-actuators/dot227-big-dc-motor-driver/dot227-big-dc-motor-driver.ino -------------------------------------------------------------------------------- /examples/dot2-portenta-h7-with-accessories/dot22-actuators/dot228-button-control-led/dot228-button-control-led.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot2-portenta-h7-with-accessories/dot22-actuators/dot228-button-control-led/dot228-button-control-led.ino -------------------------------------------------------------------------------- /examples/dot2-portenta-h7-with-accessories/dot22-actuators/dot229-128x128-gray-oled/dot229-128x128-gray-oled.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot2-portenta-h7-with-accessories/dot22-actuators/dot229-128x128-gray-oled/dot229-128x128-gray-oled.ino -------------------------------------------------------------------------------- /examples/dot2-portenta-h7-with-accessories/dot22-actuators/dot22a-blink-an-led/dot22a-blink-an-led.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot2-portenta-h7-with-accessories/dot22-actuators/dot22a-blink-an-led/dot22a-blink-an-led.ino -------------------------------------------------------------------------------- /examples/dot2-portenta-h7-with-accessories/dot23-portenta-pro-usb-host/dot23-portenta-pro-usb-host.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot2-portenta-h7-with-accessories/dot23-portenta-pro-usb-host/dot23-portenta-pro-usb-host.ino -------------------------------------------------------------------------------- /examples/dot2-portenta-h7-with-accessories/dot24-arduino-pro-LVGL-monitor/dot24-arduino-pro-LVGL-monitor.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot2-portenta-h7-with-accessories/dot24-arduino-pro-LVGL-monitor/dot24-arduino-pro-LVGL-monitor.ino -------------------------------------------------------------------------------- /examples/dot3-portenta-vision-shields/dot31-ethernet-specific/dot311-ethernet-webServer/dot311-ethernet-webServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot3-portenta-vision-shields/dot31-ethernet-specific/dot311-ethernet-webServer/dot311-ethernet-webServer.ino -------------------------------------------------------------------------------- /examples/dot3-portenta-vision-shields/dot31-ethernet-specific/dot312-mqtt-ethernet-broker/dot312-mqtt-ethernet-broker.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot3-portenta-vision-shields/dot31-ethernet-specific/dot312-mqtt-ethernet-broker/dot312-mqtt-ethernet-broker.ino -------------------------------------------------------------------------------- /examples/dot3-portenta-vision-shields/dot31-ethernet-specific/dot313-insecure-http-to-adafruit/dot313-insecure-http-to-adafruit.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot3-portenta-vision-shields/dot31-ethernet-specific/dot313-insecure-http-to-adafruit/dot313-insecure-http-to-adafruit.ino -------------------------------------------------------------------------------- /examples/dot3-portenta-vision-shields/dot31-ethernet-specific/dot314-insecure-mqtt-client-to-adafruit/dot314-insecure-mqtt-client-to-adafruit.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot3-portenta-vision-shields/dot31-ethernet-specific/dot314-insecure-mqtt-client-to-adafruit/dot314-insecure-mqtt-client-to-adafruit.ino -------------------------------------------------------------------------------- /examples/dot3-portenta-vision-shields/dot31-ethernet-specific/dot315-ethernet-secure-adafruit-https/dot315-ethernet-secure-adafruit-https.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot3-portenta-vision-shields/dot31-ethernet-specific/dot315-ethernet-secure-adafruit-https/dot315-ethernet-secure-adafruit-https.ino -------------------------------------------------------------------------------- /examples/dot3-portenta-vision-shields/dot31-ethernet-specific/dot316-ethernet-secure-mqtt-to-adafruit/dot316-ethernet-secure-mqtt-to-adafruit.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot3-portenta-vision-shields/dot31-ethernet-specific/dot316-ethernet-secure-mqtt-to-adafruit/dot316-ethernet-secure-mqtt-to-adafruit.ino -------------------------------------------------------------------------------- /examples/dot3-portenta-vision-shields/dot32-sd-card-text/dot32-sd-card-text.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot3-portenta-vision-shields/dot32-sd-card-text/dot32-sd-card-text.ino -------------------------------------------------------------------------------- /examples/dot3-portenta-vision-shields/dot33-lorawan-specific/dot331-arduino-pro-ttn-lorawan-europe/dot331-arduino-pro-ttn-lorawan-europe.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot3-portenta-vision-shields/dot33-lorawan-specific/dot331-arduino-pro-ttn-lorawan-europe/dot331-arduino-pro-ttn-lorawan-europe.ino -------------------------------------------------------------------------------- /examples/dot3-portenta-vision-shields/dot33-lorawan-specific/dot332-helium-cayenne-us915/dot332-helium-cayenne-us915.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot3-portenta-vision-shields/dot33-lorawan-specific/dot332-helium-cayenne-us915/dot332-helium-cayenne-us915.ino -------------------------------------------------------------------------------- /examples/dot3-portenta-vision-shields/dot33-lorawan-specific/dot333-helium-us915-cayenne-timer/dot333-helium-us915-cayenne-timer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot3-portenta-vision-shields/dot33-lorawan-specific/dot333-helium-us915-cayenne-timer/dot333-helium-us915-cayenne-timer.ino -------------------------------------------------------------------------------- /examples/dot3-portenta-vision-shields/dot33-lorawan-specific/dot334-us915-helium-mqtt-adafruit-connect/dot334-us915-helium-mqtt-adafruit-connect.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot3-portenta-vision-shields/dot33-lorawan-specific/dot334-us915-helium-mqtt-adafruit-connect/dot334-us915-helium-mqtt-adafruit-connect.ino -------------------------------------------------------------------------------- /examples/dot3-portenta-vision-shields/dot33-lorawan-specific/dot335-helium-http-adafruit-connect/dot335-helium-http-adafruit-connect.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot3-portenta-vision-shields/dot33-lorawan-specific/dot335-helium-http-adafruit-connect/dot335-helium-http-adafruit-connect.ino -------------------------------------------------------------------------------- /examples/dot3-portenta-vision-shields/dot34-pure-lora/dot341-lora-update-standalone/dev_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot3-portenta-vision-shields/dot34-pure-lora/dot341-lora-update-standalone/dev_table.c -------------------------------------------------------------------------------- /examples/dot3-portenta-vision-shields/dot34-pure-lora/dot341-lora-update-standalone/dot341-lora-update-standalone.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot3-portenta-vision-shields/dot34-pure-lora/dot341-lora-update-standalone/dot341-lora-update-standalone.ino -------------------------------------------------------------------------------- /examples/dot3-portenta-vision-shields/dot34-pure-lora/dot341-lora-update-standalone/fw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot3-portenta-vision-shields/dot34-pure-lora/dot341-lora-update-standalone/fw.h -------------------------------------------------------------------------------- /examples/dot3-portenta-vision-shields/dot34-pure-lora/dot341-lora-update-standalone/serial_arduino.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot3-portenta-vision-shields/dot34-pure-lora/dot341-lora-update-standalone/serial_arduino.cpp -------------------------------------------------------------------------------- /examples/dot3-portenta-vision-shields/dot34-pure-lora/dot341-lora-update-standalone/serial_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot3-portenta-vision-shields/dot34-pure-lora/dot341-lora-update-standalone/serial_arduino.h -------------------------------------------------------------------------------- /examples/dot3-portenta-vision-shields/dot34-pure-lora/dot341-lora-update-standalone/stm32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot3-portenta-vision-shields/dot34-pure-lora/dot341-lora-update-standalone/stm32.cpp -------------------------------------------------------------------------------- /examples/dot3-portenta-vision-shields/dot34-pure-lora/dot341-lora-update-standalone/stm32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot3-portenta-vision-shields/dot34-pure-lora/dot341-lora-update-standalone/stm32.h -------------------------------------------------------------------------------- /examples/dot3-portenta-vision-shields/dot34-pure-lora/dot341-lora-update-standalone/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot3-portenta-vision-shields/dot34-pure-lora/dot341-lora-update-standalone/utils.c -------------------------------------------------------------------------------- /examples/dot3-portenta-vision-shields/dot34-pure-lora/dot341-lora-update-standalone/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot3-portenta-vision-shields/dot34-pure-lora/dot341-lora-update-standalone/utils.h -------------------------------------------------------------------------------- /examples/dot3-portenta-vision-shields/dot34-pure-lora/dot342-serial-lora/dot342-serial-lora.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot3-portenta-vision-shields/dot34-pure-lora/dot342-serial-lora/dot342-serial-lora.ino -------------------------------------------------------------------------------- /examples/dot3-portenta-vision-shields/dot34-pure-lora/dot343-extras/dot3431-instructions/dot3431-instructions.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot3-portenta-vision-shields/dot34-pure-lora/dot343-extras/dot3431-instructions/dot3431-instructions.ino -------------------------------------------------------------------------------- /examples/dot3-portenta-vision-shields/dot34-pure-lora/dot343-extras/dot3432-portenta-murata-bridge/dot3432-portenta-murata-bridge.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot3-portenta-vision-shields/dot34-pure-lora/dot343-extras/dot3432-portenta-murata-bridge/dot3432-portenta-murata-bridge.ino -------------------------------------------------------------------------------- /examples/dot3-portenta-vision-shields/dot34-pure-lora/dot343-extras/dot3433-murata-lora-grumpyoldpizza/dot3433-murata-lora-grumpyoldpizza.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot3-portenta-vision-shields/dot34-pure-lora/dot343-extras/dot3433-murata-lora-grumpyoldpizza/dot3433-murata-lora-grumpyoldpizza.ino -------------------------------------------------------------------------------- /examples/dot3-portenta-vision-shields/dot34-pure-lora/dot343-extras/dot3434-portenta-serial-lora/dot3434-portenta-serial-lora.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot3-portenta-vision-shields/dot34-pure-lora/dot343-extras/dot3434-portenta-serial-lora/dot3434-portenta-serial-lora.ino -------------------------------------------------------------------------------- /examples/dot3-portenta-vision-shields/dot35-camera-and-oled/dot351-camera-oled-regular/dot351-camera-oled-regular.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot3-portenta-vision-shields/dot35-camera-and-oled/dot351-camera-oled-regular/dot351-camera-oled-regular.ino -------------------------------------------------------------------------------- /examples/dot3-portenta-vision-shields/dot35-camera-and-oled/dot352-carmera-oled-heap/dot352-carmera-oled-heap.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot3-portenta-vision-shields/dot35-camera-and-oled/dot352-carmera-oled-heap/dot352-carmera-oled-heap.ino -------------------------------------------------------------------------------- /examples/dot3-portenta-vision-shields/dot35-camera-and-oled/dot353-camera-oled-sdram/dot353-camera-oled-sdram.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot3-portenta-vision-shields/dot35-camera-and-oled/dot353-camera-oled-sdram/dot353-camera-oled-sdram.ino -------------------------------------------------------------------------------- /examples/dot3-portenta-vision-shields/dot36-camera-png-to-web/dot361-camera-png-to-web/dot361-camera-png-to-web.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot3-portenta-vision-shields/dot36-camera-png-to-web/dot361-camera-png-to-web/dot361-camera-png-to-web.ino -------------------------------------------------------------------------------- /examples/dot3-portenta-vision-shields/dot36-camera-png-to-web/dot362-png-to-sd-card/dot362-png-to-sd-card.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot3-portenta-vision-shields/dot36-camera-png-to-web/dot362-png-to-sd-card/dot362-png-to-sd-card.ino -------------------------------------------------------------------------------- /examples/dot3-portenta-vision-shields/dot36-camera-png-to-web/dot363-camera-png-to-websocket/dot363-camera-png-to-websocket.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot3-portenta-vision-shields/dot36-camera-png-to-web/dot363-camera-png-to-websocket/dot363-camera-png-to-websocket.ino -------------------------------------------------------------------------------- /examples/dot3-portenta-vision-shields/dot36-camera-png-to-web/dot364-camera-activated-websocket-to-sd-card/dot364-camera-activated-websocket-to-sd-card.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot3-portenta-vision-shields/dot36-camera-png-to-web/dot364-camera-activated-websocket-to-sd-card/dot364-camera-activated-websocket-to-sd-card.ino -------------------------------------------------------------------------------- /examples/dot3-portenta-vision-shields/dot36-camera-png-to-web/dot365-sd-card-html-and-png-to-local-web/dot365-sd-card-html-and-png-to-local-web.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot3-portenta-vision-shields/dot36-camera-png-to-web/dot365-sd-card-html-and-png-to-local-web/dot365-sd-card-html-and-png-to-local-web.ino -------------------------------------------------------------------------------- /examples/dot4-portenta-breakout-board/dot41-mbed/dot411-mbed-gpio/d-a-a-mbed-gpio.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot4-portenta-breakout-board/dot41-mbed/dot411-mbed-gpio/d-a-a-mbed-gpio.ino -------------------------------------------------------------------------------- /examples/dot4-portenta-breakout-board/dot41-mbed/dot412-mbed-pwm/dot412-mbed-pwm.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot4-portenta-breakout-board/dot41-mbed/dot412-mbed-pwm/dot412-mbed-pwm.ino -------------------------------------------------------------------------------- /examples/dot4-portenta-breakout-board/dot41-mbed/dot413-mbed-analog-pins/dot413-mbed-analog-pins.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot4-portenta-breakout-board/dot41-mbed/dot413-mbed-analog-pins/dot413-mbed-analog-pins.ino -------------------------------------------------------------------------------- /examples/dot4-portenta-breakout-board/dot41-mbed/dot414-serial-UART/dot4141-uart-other-arduino/dot4141-uart-other-arduino.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot4-portenta-breakout-board/dot41-mbed/dot414-serial-UART/dot4141-uart-other-arduino/dot4141-uart-other-arduino.ino -------------------------------------------------------------------------------- /examples/dot4-portenta-breakout-board/dot41-mbed/dot414-serial-UART/dot4142-uart-portenta/dot4142-uart-portenta.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot4-portenta-breakout-board/dot41-mbed/dot414-serial-UART/dot4142-uart-portenta/dot4142-uart-portenta.ino -------------------------------------------------------------------------------- /examples/dot4-portenta-breakout-board/dot41-mbed/dot414-serial-UART/dot4143-all-uart/dot4143-all-uart.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot4-portenta-breakout-board/dot41-mbed/dot414-serial-UART/dot4143-all-uart/dot4143-all-uart.ino -------------------------------------------------------------------------------- /examples/dot4-portenta-breakout-board/dot41-mbed/dot414-serial-UART/dot4144-uart-fast-count/dot4144-uart-fast-count.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot4-portenta-breakout-board/dot41-mbed/dot414-serial-UART/dot4144-uart-fast-count/dot4144-uart-fast-count.ino -------------------------------------------------------------------------------- /examples/dot4-portenta-breakout-board/dot41-mbed/dot415-serial-I2C/dot4151-serial-I2C-master-all/dot4151-serial-I2C-master-all.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot4-portenta-breakout-board/dot41-mbed/dot415-serial-I2C/dot4151-serial-I2C-master-all/dot4151-serial-I2C-master-all.ino -------------------------------------------------------------------------------- /examples/dot4-portenta-breakout-board/dot41-mbed/dot415-serial-I2C/dot4152-serial-I2C-slave/dot4152-serial-I2C-slave.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot4-portenta-breakout-board/dot41-mbed/dot415-serial-I2C/dot4152-serial-I2C-slave/dot4152-serial-I2C-slave.ino -------------------------------------------------------------------------------- /examples/dot4-portenta-breakout-board/dot42-UART1-M4-to-M7/dot42-UART1-M4-to-M7.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot4-portenta-breakout-board/dot42-UART1-M4-to-M7/dot42-UART1-M4-to-M7.ino -------------------------------------------------------------------------------- /examples/dot4-portenta-breakout-board/dot43-ArduinoJSON-UART/dot43-ArduinoJSON-UART.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot4-portenta-breakout-board/dot43-ArduinoJSON-UART/dot43-ArduinoJSON-UART.ino -------------------------------------------------------------------------------- /examples/dot4-portenta-breakout-board/dot44-serialTransfer-UART/dot44-serialTransfer-UART.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot4-portenta-breakout-board/dot44-serialTransfer-UART/dot44-serialTransfer-UART.ino -------------------------------------------------------------------------------- /examples/dot4-portenta-breakout-board/dot45-I2C/dot45-I2C.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot4-portenta-breakout-board/dot45-I2C/dot45-I2C.ino -------------------------------------------------------------------------------- /examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot511-vision-classify/dot5112-simplified-vision/dot5112-simplified-vision.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot511-vision-classify/dot5112-simplified-vision/dot5112-simplified-vision.ino -------------------------------------------------------------------------------- /examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot511-vision-classify/dot5112-simplified-vision/edge-impulse-advanced-v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot511-vision-classify/dot5112-simplified-vision/edge-impulse-advanced-v2.h -------------------------------------------------------------------------------- /examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot511-vision-classify/dot5113-show-top-classification/dot5113-show-top-classification.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot511-vision-classify/dot5113-show-top-classification/dot5113-show-top-classification.ino -------------------------------------------------------------------------------- /examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot511-vision-classify/dot5113-show-top-classification/edge-impulse-advanced-v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot511-vision-classify/dot5113-show-top-classification/edge-impulse-advanced-v2.h -------------------------------------------------------------------------------- /examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot511-vision-classify/dot5114-vision-oled/dot5114-vision-oled.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot511-vision-classify/dot5114-vision-oled/dot5114-vision-oled.ino -------------------------------------------------------------------------------- /examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot511-vision-classify/dot5114-vision-oled/edge-impulse-advanced-v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot511-vision-classify/dot5114-vision-oled/edge-impulse-advanced-v2.h -------------------------------------------------------------------------------- /examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot511-vision-classify/dot5115-classification-count/dot5115-classification-count.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot511-vision-classify/dot5115-classification-count/dot5115-classification-count.ino -------------------------------------------------------------------------------- /examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot511-vision-classify/dot5115-classification-count/edge-impulse-advanced-v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot511-vision-classify/dot5115-classification-count/edge-impulse-advanced-v2.h -------------------------------------------------------------------------------- /examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot511-vision-classify/dot5116-vision-mqtt-helium-counts/dot5116-vision-mqtt-helium-counts.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot511-vision-classify/dot5116-vision-mqtt-helium-counts/dot5116-vision-mqtt-helium-counts.ino -------------------------------------------------------------------------------- /examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot511-vision-classify/dot5116-vision-mqtt-helium-counts/edge-impulse-advanced-v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot511-vision-classify/dot5116-vision-mqtt-helium-counts/edge-impulse-advanced-v2.h -------------------------------------------------------------------------------- /examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot511z-vision-shield-old-before-2-8-0/dot5112-simplified-vision/dot5112-simplified-vision.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot511z-vision-shield-old-before-2-8-0/dot5112-simplified-vision/dot5112-simplified-vision.ino -------------------------------------------------------------------------------- /examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot511z-vision-shield-old-before-2-8-0/dot5112-simplified-vision/edge-impulse-advanced.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot511z-vision-shield-old-before-2-8-0/dot5112-simplified-vision/edge-impulse-advanced.h -------------------------------------------------------------------------------- /examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot511z-vision-shield-old-before-2-8-0/dot5113-show-top-classification/dot5113-show-top-classification.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot511z-vision-shield-old-before-2-8-0/dot5113-show-top-classification/dot5113-show-top-classification.ino -------------------------------------------------------------------------------- /examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot511z-vision-shield-old-before-2-8-0/dot5113-show-top-classification/edge-impulse-advanced.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot511z-vision-shield-old-before-2-8-0/dot5113-show-top-classification/edge-impulse-advanced.h -------------------------------------------------------------------------------- /examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot511z-vision-shield-old-before-2-8-0/dot5114-vision-oled/dot5114-vision-oled.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot511z-vision-shield-old-before-2-8-0/dot5114-vision-oled/dot5114-vision-oled.ino -------------------------------------------------------------------------------- /examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot511z-vision-shield-old-before-2-8-0/dot5114-vision-oled/edge-impulse-advanced.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot511z-vision-shield-old-before-2-8-0/dot5114-vision-oled/edge-impulse-advanced.h -------------------------------------------------------------------------------- /examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot511z-vision-shield-old-before-2-8-0/dot5115-classification-count/dot5115-classification-count.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot511z-vision-shield-old-before-2-8-0/dot5115-classification-count/dot5115-classification-count.ino -------------------------------------------------------------------------------- /examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot511z-vision-shield-old-before-2-8-0/dot5115-classification-count/edge-impulse-advanced.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot511z-vision-shield-old-before-2-8-0/dot5115-classification-count/edge-impulse-advanced.h -------------------------------------------------------------------------------- /examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot512-with-accessories/dot5121-accelerometer/dot51211-WORDS/dot51211-WORDS.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot512-with-accessories/dot5121-accelerometer/dot51211-WORDS/dot51211-WORDS.ino -------------------------------------------------------------------------------- /examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot513-utilities/dot5131-json-sd-card-upload/dot5131-json-sd-card-upload.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot513-utilities/dot5131-json-sd-card-upload/dot5131-json-sd-card-upload.ino -------------------------------------------------------------------------------- /examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot513-utilities/dot5132-all-data-one-csv/dot5132-all-data-one-csv.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot513-utilities/dot5132-all-data-one-csv/dot5132-all-data-one-csv.ino -------------------------------------------------------------------------------- /examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot513-utilities/dot5133-multi-csv-timestamp/dot5133-multi-csv-timestamp.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot513-utilities/dot5133-multi-csv-timestamp/dot5133-multi-csv-timestamp.ino -------------------------------------------------------------------------------- /examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot513-utilities/dot5134-multi-csv-only-data/dot5134-multi-csv-only-data.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot513-utilities/dot5134-multi-csv-only-data/dot5134-multi-csv-only-data.ino -------------------------------------------------------------------------------- /examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot513-utilities/dot5135-easy-data-forwarder/dot5135-easy-data-forwarder.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot513-utilities/dot5135-easy-data-forwarder/dot5135-easy-data-forwarder.ino -------------------------------------------------------------------------------- /examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot514-vision-fomo/dot5142-simplified-vision/dot5142-simplified-vision.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot514-vision-fomo/dot5142-simplified-vision/dot5142-simplified-vision.ino -------------------------------------------------------------------------------- /examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot514-vision-fomo/dot5142-simplified-vision/edge-impulse-advanced-v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot514-vision-fomo/dot5142-simplified-vision/edge-impulse-advanced-v2.h -------------------------------------------------------------------------------- /examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot514-vision-fomo/dot5143-show-top-classification/dot5143-show-top-classification.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot514-vision-fomo/dot5143-show-top-classification/dot5143-show-top-classification.ino -------------------------------------------------------------------------------- /examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot514-vision-fomo/dot5143-show-top-classification/edge-impulse-advanced-v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot514-vision-fomo/dot5143-show-top-classification/edge-impulse-advanced-v2.h -------------------------------------------------------------------------------- /examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot514-vision-fomo/dot5144-vision-oled/dot5144-vision-oled.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot514-vision-fomo/dot5144-vision-oled/dot5144-vision-oled.ino -------------------------------------------------------------------------------- /examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot514-vision-fomo/dot5144-vision-oled/edge-impulse-advanced-v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot514-vision-fomo/dot5144-vision-oled/edge-impulse-advanced-v2.h -------------------------------------------------------------------------------- /examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot514-vision-fomo/dot5145-classification-count/dot5145-classification-count.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot514-vision-fomo/dot5145-classification-count/dot5145-classification-count.ino -------------------------------------------------------------------------------- /examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot514-vision-fomo/dot5145-classification-count/edge-impulse-advanced-v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot514-vision-fomo/dot5145-classification-count/edge-impulse-advanced-v2.h -------------------------------------------------------------------------------- /examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot514-vision-fomo/dot5146-oled-count/dot5146-oled-count.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot514-vision-fomo/dot5146-oled-count/dot5146-oled-count.ino -------------------------------------------------------------------------------- /examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot514-vision-fomo/dot5146-oled-count/edge-impulse-advanced-v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot514-vision-fomo/dot5146-oled-count/edge-impulse-advanced-v2.h -------------------------------------------------------------------------------- /examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot514-vision-fomo/dot5147-oled-fomo-more-than-10/dot5147-oled-fomo-more-than-10.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot514-vision-fomo/dot5147-oled-fomo-more-than-10/dot5147-oled-fomo-more-than-10.ino -------------------------------------------------------------------------------- /examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot514-vision-fomo/dot5147-oled-fomo-more-than-10/edge-impulse-advanced-v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot514-vision-fomo/dot5147-oled-fomo-more-than-10/edge-impulse-advanced-v2.h -------------------------------------------------------------------------------- /examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot514-vision-fomo/dot5148-advanced-fomo-individual-count/dot5148-advanced-fomo-individual-count.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot514-vision-fomo/dot5148-advanced-fomo-individual-count/dot5148-advanced-fomo-individual-count.ino -------------------------------------------------------------------------------- /examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot514-vision-fomo/dot5148-advanced-fomo-individual-count/edge-impulse-advanced-v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot5-portenta-machine-learning/dot51-portenta-edge-impulse-ml/dot514-vision-fomo/dot5148-advanced-fomo-individual-count/edge-impulse-advanced-v2.h -------------------------------------------------------------------------------- /examples/dot5-portenta-machine-learning/dot52-portenta-rocksetta-ml/dot521-rocksetta-hello-ml-sine/dot521-rocksetta-hello-ml-sine.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot5-portenta-machine-learning/dot52-portenta-rocksetta-ml/dot521-rocksetta-hello-ml-sine/dot521-rocksetta-hello-ml-sine.ino -------------------------------------------------------------------------------- /examples/dot5-portenta-machine-learning/dot52-portenta-rocksetta-ml/dot521-rocksetta-hello-ml-sine/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot5-portenta-machine-learning/dot52-portenta-rocksetta-ml/dot521-rocksetta-hello-ml-sine/model.h -------------------------------------------------------------------------------- /examples/dot5-portenta-machine-learning/dot52-portenta-rocksetta-ml/dot521-rocksetta-hello-ml-sine/rocksetta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot5-portenta-machine-learning/dot52-portenta-rocksetta-ml/dot521-rocksetta-hello-ml-sine/rocksetta.h -------------------------------------------------------------------------------- /examples/dot5-portenta-machine-learning/dot53-portenta-openMV-ml/dot53-portenta-openMV-ml.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot5-portenta-machine-learning/dot53-portenta-openMV-ml/dot53-portenta-openMV-ml.ino -------------------------------------------------------------------------------- /examples/dot5-portenta-machine-learning/dot54-aruino-pro-ml-tutorial/dot54-aruino-pro-ml-tutorial.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot5-portenta-machine-learning/dot54-aruino-pro-ml-tutorial/dot54-aruino-pro-ml-tutorial.ino -------------------------------------------------------------------------------- /examples/dot5-portenta-machine-learning/dot55-robocar/dot551-robocar-v1/dot551-robocar-v1.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot5-portenta-machine-learning/dot55-robocar/dot551-robocar-v1/dot551-robocar-v1.ino -------------------------------------------------------------------------------- /examples/dot5-portenta-machine-learning/dot55-robocar/dot551-robocar-v1/edge-impulse-advanced-v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot5-portenta-machine-learning/dot55-robocar/dot551-robocar-v1/edge-impulse-advanced-v2.h -------------------------------------------------------------------------------- /examples/dot6-portenta-advanced/dot61-arduino-pro-flash-memory/dot61-arduino-pro-flash-memory.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot6-portenta-advanced/dot61-arduino-pro-flash-memory/dot61-arduino-pro-flash-memory.ino -------------------------------------------------------------------------------- /examples/dot6-portenta-advanced/dot62-arduino-pro-key-value-pair/dot62-arduino-pro-key-value-pair.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot6-portenta-advanced/dot62-arduino-pro-key-value-pair/dot62-arduino-pro-key-value-pair.ino -------------------------------------------------------------------------------- /examples/dot6-portenta-advanced/dot63-sram-share-core-memory/dot63-sram-share-core-memory.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot6-portenta-advanced/dot63-sram-share-core-memory/dot63-sram-share-core-memory.ino -------------------------------------------------------------------------------- /examples/dot6-portenta-advanced/dot64-pin-names/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot6-portenta-advanced/dot64-pin-names/README.md -------------------------------------------------------------------------------- /examples/dot6-portenta-advanced/dot64-pin-names/dot64-pin-names.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot6-portenta-advanced/dot64-pin-names/dot64-pin-names.ino -------------------------------------------------------------------------------- /examples/dot7-coding-curriculum/dot71-sos/dot71-sos.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot7-coding-curriculum/dot71-sos/dot71-sos.ino -------------------------------------------------------------------------------- /examples/dot7-coding-curriculum/dot72-string-input-output/dot72-string-input-output.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot7-coding-curriculum/dot72-string-input-output/dot72-string-input-output.ino -------------------------------------------------------------------------------- /examples/dot7-coding-curriculum/dot73-simple-variables/dot73-simple-variables.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot7-coding-curriculum/dot73-simple-variables/dot73-simple-variables.ino -------------------------------------------------------------------------------- /examples/dot7-coding-curriculum/dot74-for-loop/dot74-for-loop.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot7-coding-curriculum/dot74-for-loop/dot74-for-loop.ino -------------------------------------------------------------------------------- /examples/dot7-coding-curriculum/dot75-if-statement/dot75-if-statement.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot7-coding-curriculum/dot75-if-statement/dot75-if-statement.ino -------------------------------------------------------------------------------- /examples/dot7-coding-curriculum/dot76-arrays/dot76-arrays.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot7-coding-curriculum/dot76-arrays/dot76-arrays.ino -------------------------------------------------------------------------------- /examples/dot7-coding-curriculum/dot77-struct/dot77-struct.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot7-coding-curriculum/dot77-struct/dot77-struct.ino -------------------------------------------------------------------------------- /examples/dot7-coding-curriculum/dot78-functions/dot78-functions.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot7-coding-curriculum/dot78-functions/dot78-functions.ino -------------------------------------------------------------------------------- /examples/dot7-coding-curriculum/dot79-classes-objects/dot79-classes-objects.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot7-coding-curriculum/dot79-classes-objects/dot79-classes-objects.ino -------------------------------------------------------------------------------- /examples/dot8-portenta-bugs/dot80-gotchas/dot80-gotchas.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot8-portenta-bugs/dot80-gotchas/dot80-gotchas.ino -------------------------------------------------------------------------------- /examples/dot8-portenta-bugs/dot81-bugs-mbed-board-version-1.3.2/dot81-bugs-mbed-board-version-1.3.2.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot8-portenta-bugs/dot81-bugs-mbed-board-version-1.3.2/dot81-bugs-mbed-board-version-1.3.2.ino -------------------------------------------------------------------------------- /examples/dot8-portenta-bugs/dot82-bugs-mbed-board-version-2-0-0/dot82-bugs-mbed-board-version-2-0-0.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot8-portenta-bugs/dot82-bugs-mbed-board-version-2-0-0/dot82-bugs-mbed-board-version-2-0-0.ino -------------------------------------------------------------------------------- /examples/dot8-portenta-bugs/dot83-bugs-mbed-board-version-3-0-1/dot83-bugs-mbed-board-version-3-0-1.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/examples/dot8-portenta-bugs/dot83-bugs-mbed-board-version-3-0-1/dot83-bugs-mbed-board-version-3-0-1.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/library.json -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/library.properties -------------------------------------------------------------------------------- /media/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/media/README.md -------------------------------------------------------------------------------- /media/portenta-breakout-board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/media/portenta-breakout-board.png -------------------------------------------------------------------------------- /murata-lora-module.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/murata-lora-module.md -------------------------------------------------------------------------------- /notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/notes.md -------------------------------------------------------------------------------- /pricelist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/pricelist.md -------------------------------------------------------------------------------- /research-not-ready/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/research-not-ready/README.md -------------------------------------------------------------------------------- /research-not-ready/Serial1.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/research-not-ready/Serial1.ino -------------------------------------------------------------------------------- /research-not-ready/range-finder-draft01.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/research-not-ready/range-finder-draft01.ino -------------------------------------------------------------------------------- /research-not-ready/range-finder-draft02.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/research-not-ready/range-finder-draft02.ino -------------------------------------------------------------------------------- /research-not-ready/serial-values.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/research-not-ready/serial-values.md -------------------------------------------------------------------------------- /src/portenta-pro-community-solutions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/src/portenta-pro-community-solutions.h -------------------------------------------------------------------------------- /zipped-libraries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/zipped-libraries/README.md -------------------------------------------------------------------------------- /zipped-libraries/edge-Impulse/arduino-exported/Portenta-Camera/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/zipped-libraries/edge-Impulse/arduino-exported/Portenta-Camera/README.md -------------------------------------------------------------------------------- /zipped-libraries/edge-Impulse/arduino-exported/Portenta-Camera/anger-contempt-fear-happy-sadness-surprise-arduino-1.0.8.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/zipped-libraries/edge-Impulse/arduino-exported/Portenta-Camera/anger-contempt-fear-happy-sadness-surprise-arduino-1.0.8.zip -------------------------------------------------------------------------------- /zipped-libraries/edge-Impulse/arduino-exported/Portenta-Camera/ei-ei-fomo-v21-just-eye-arduino-1.0.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/zipped-libraries/edge-Impulse/arduino-exported/Portenta-Camera/ei-ei-fomo-v21-just-eye-arduino-1.0.2.zip -------------------------------------------------------------------------------- /zipped-libraries/edge-Impulse/arduino-exported/Portenta-Camera/ei-ei-portenta-42-try-96x96-gray-better-trained-arduino-1.0.60.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/zipped-libraries/edge-Impulse/arduino-exported/Portenta-Camera/ei-ei-portenta-42-try-96x96-gray-better-trained-arduino-1.0.60.zip -------------------------------------------------------------------------------- /zipped-libraries/edge-Impulse/arduino-exported/Portenta-Camera/ei-ei-v20unknown-1popgoright-2watergoleft-3fast-v2-0-0-arduino-1.0.7.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/zipped-libraries/edge-Impulse/arduino-exported/Portenta-Camera/ei-ei-v20unknown-1popgoright-2watergoleft-3fast-v2-0-0-arduino-1.0.7.zip -------------------------------------------------------------------------------- /zipped-libraries/edge-Impulse/arduino-exported/Portenta-Camera/ei-ei-v25-fomo-eyes-shades-arduino-1.0.2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/zipped-libraries/edge-Impulse/arduino-exported/Portenta-Camera/ei-ei-v25-fomo-eyes-shades-arduino-1.0.2.zip -------------------------------------------------------------------------------- /zipped-libraries/edge-Impulse/arduino-exported/Portenta-Camera/ei-ei-v6-0-1-fomo-2.8.0mbed-96x96-vision-1pop-arduino-1.0.9.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/zipped-libraries/edge-Impulse/arduino-exported/Portenta-Camera/ei-ei-v6-0-1-fomo-2.8.0mbed-96x96-vision-1pop-arduino-1.0.9.zip -------------------------------------------------------------------------------- /zipped-libraries/edge-Impulse/arduino-exported/Portenta-microphone/README.md: -------------------------------------------------------------------------------- 1 | Just a bunch of microphone edge impulse exported libraries. 2 | -------------------------------------------------------------------------------- /zipped-libraries/edge-Impulse/cpp-exported/camera-impulse/README.md: -------------------------------------------------------------------------------- 1 | c++ exported camera impulse 2 | -------------------------------------------------------------------------------- /zipped-libraries/edge-Impulse/cpp-exported/camera-impulse/anger-contempt-fear-happy-sadness-surprise-v7.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/zipped-libraries/edge-Impulse/cpp-exported/camera-impulse/anger-contempt-fear-happy-sadness-surprise-v7.zip -------------------------------------------------------------------------------- /zipped-libraries/edge-Impulse/cpp-exported/microphone-impulse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/zipped-libraries/edge-Impulse/cpp-exported/microphone-impulse/README.md -------------------------------------------------------------------------------- /zipped-libraries/w6-words_inference.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpssjellis/portenta-pro-community-solutions/HEAD/zipped-libraries/w6-words_inference.zip --------------------------------------------------------------------------------