├── ADC └── solarLightAnalyzer.txt ├── DAC ├── DACcosinewave.txt ├── DACdirectAccess.txt ├── DACusage.txt ├── DAoutput.txt ├── README.md └── tones.txt ├── DHT22.txt ├── ESP32forth70721a ├── ESP32forth70721a.ino ├── README.md └── optional │ ├── README-optional.txt │ ├── README.md │ ├── assemblers.h │ ├── camera.h │ ├── espnow-voc.h │ ├── http-client.h │ ├── interrupts.h │ ├── oled.h │ ├── rmt.h │ ├── serial-bluetooth.h │ ├── spi-flash.h │ └── spi-voc.h ├── ESP32onSerial.jpg ├── LoRa ├── LoRaCommunication.txt ├── LoRaInitParams.txt ├── LoRaSettingUp.txt ├── SLAVinterfaceLoRa.txt ├── esp32serial2.jpg ├── readme.md ├── transmitDecode.txt └── transmitLoRaFromBOSS.txt ├── OOF └── miniOOF.txt ├── README.md ├── XTENSA ├── AVG.txt ├── AVG3.txt ├── README.md ├── REVBITS.txt ├── myMOVI.txt ├── myXtensaTests.txt ├── xtensaExtensions.txt └── xtensaMacros.txt ├── __documentation ├── CN │ ├── ESP32forthZhangBen_CN_V1_6_.pdf │ └── README.md ├── DE │ ├── ESP32forthGrosseBuch_DE_V2_0.pdf │ ├── README.md │ └── couvertureLivreEsp32_DE.jpg ├── EN │ ├── ESP32forthReferenceManual_EN_V_1_2.pdf │ └── GreatBookESP32forth_EN_v1_17.pdf ├── ES │ ├── GranLibroESP32forth_ES_V1_17.pdf │ └── README.md ├── ESP32forth-book.zip ├── FR │ ├── GrandLivreESP32forth_FR_V2_0.pdf │ └── ManuelReferenceESP32forth_FR_V_1_2.pdf ├── README.md └── couvertureLivreEsp32.png ├── __my projects ├── DAC │ ├── autoexec.fs │ ├── config.fs │ ├── frequencyNotes.fs │ ├── main.fs │ ├── tones.fs │ └── tonesTest.fs ├── GPIOs │ ├── 74HC595 │ │ ├── 74HC595.fs │ │ ├── README.md │ │ ├── SPIinit.fs │ │ ├── autoexec.fs │ │ ├── config.fs │ │ ├── main.fs │ │ └── tests.fs │ └── direct registers │ │ ├── autoexec.fs │ │ ├── config.fs │ │ ├── defRegsMasks.fs │ │ ├── main.fs │ │ └── trafficLight.fs ├── LoRa │ └── README.md ├── display │ ├── ILI9341 │ │ ├── ILI9341onBreadBoard.jpg │ │ ├── ILI9341voc.fs │ │ ├── ILI9341waveshare.fs │ │ ├── README.md │ │ ├── assert.fs │ │ ├── config.fs │ │ ├── graphics.fs │ │ ├── main.fs │ │ └── tests.fs │ └── OLED SSD1306 128x32 │ │ ├── TEMPVS FVGIT │ │ ├── README.md │ │ ├── RTClock.fs │ │ ├── autoexec.fs │ │ ├── clepsydra.fs │ │ ├── config.fs │ │ ├── main.fs │ │ ├── oledToolst.fs │ │ ├── strings.fs │ │ └── tempusFugit.jpg │ │ ├── autoexec.fs │ │ ├── config.fs │ │ ├── extendOledVoc.fs │ │ ├── main.fs │ │ └── oledToolst.fs ├── esp_err.V20.fs ├── esp_err.fs ├── robotics │ └── littleRobot │ │ ├── autoexec.fs │ │ ├── config.fs │ │ └── main.fs ├── sensors │ ├── B25 Voltage Module │ │ ├── I2Cscan.fs │ │ ├── assert.fs │ │ ├── autoexec.fs │ │ ├── b25.fs │ │ ├── buzzer.fs │ │ ├── config.fs │ │ ├── documentation │ │ │ ├── README.md │ │ │ ├── voltageSensor.jpg │ │ │ └── wired-b25.jpg │ │ ├── main.fs │ │ ├── oledSSD1306.fs │ │ └── tests.fs │ ├── DHT11 │ │ ├── DHT22.txt │ │ ├── autoexec.fs │ │ ├── config.fs │ │ ├── dht11.fs │ │ └── main.fs │ ├── DS18B20 │ │ ├── README.md │ │ ├── config.fs │ │ ├── documents │ │ │ └── README.md │ │ ├── ds18b20.fs │ │ ├── ds18b20.jpg │ │ ├── main.fs │ │ └── tests.fs │ └── ky022 │ │ ├── autoexec.fs │ │ ├── config.fs │ │ ├── documentation │ │ ├── README.md │ │ └── ky-022-IR-receiver.jpg │ │ ├── dumpTool.fs │ │ ├── esp_err.V20.fs │ │ ├── ky022.fs │ │ ├── main.fs │ │ └── select_protocol.fs └── soundSynth │ ├── README.md │ ├── autoexec.fs │ ├── config.fs │ ├── main.fs │ └── tests.fs ├── __sandbox ├── NEXUS SENSOR │ ├── I2Cscan.fs │ ├── apds9960.fs │ ├── assert.fs │ ├── autoexec.fs │ ├── bme688.fs │ ├── config.fs │ ├── documentation │ │ ├── README.md │ │ ├── SENSE User Guide Version 1.02.pdf │ │ └── nexus-sense-pins.png │ ├── extendForthVoc.fs │ ├── main.fs │ ├── nexus.fs │ ├── pcf8523.fs │ └── tests.fs └── README.md ├── assembler └── xtensa.pdf ├── binaries ├── MyFFshellDistribution45.zip ├── README.md └── WROOM-32 │ ├── ESP32forth70721_WROOM32.zip │ └── README.md ├── displays ├── MAX7219 │ ├── 32x8ledsGraphics.txt │ ├── README.md │ ├── batDisplay.jpg │ ├── dice-roll.txt │ ├── manageMAX7219.txt │ └── testMAX7219.txt ├── SSD1306 │ ├── README.md │ ├── SSD1306-5x8rusFonts.txt │ ├── SSD1306commands.txt │ ├── SSD1306dispChars.txt │ ├── SSD1306graphics.txt │ ├── SSD1306sprites.txt │ └── SSD1306wiring.jpg ├── charTable.txt ├── chineseChars.txt └── sprites.txt ├── eagle_soc.txt ├── encoder ├── KY040encoder.txt ├── readme.md └── rotaryEncoderBread.png ├── espnow ├── README.md ├── datas-structs.fs ├── espnow.fs ├── mac-address.fs ├── main.fs ├── oled128x32-display.fs ├── peer-list.fs └── tests.fs ├── food ├── README.md └── food.txt ├── http ├── httpGetTime.txt ├── httpSendData.txt └── httptest.txt ├── interruptions.txt ├── leapYear.txt ├── littleRobot.txt ├── missing_words └── wordsList.txt ├── optional ├── oled.h └── spi.userwords.h ├── randomNumbers.txt ├── registersdefinitions.txt ├── regsDirectAccess.txt ├── regsManipulations.txt ├── serial2.txt ├── sinus.txt ├── sockets ├── sockerErrno.txt └── testGethostbyname.txt ├── spiffs ├── README.MD ├── SSD1306.fs ├── SSD1306 │ ├── README.md │ ├── commands.fs │ └── config.fs ├── defineVSPI.txt ├── defpin.txt ├── dumpTool.txt ├── manageMAX7219.txt ├── registersDefinitions.txt ├── xtensaExtensions.txt └── xtensaMacros.txt ├── structExamples.txt ├── telnet ├── autoexec.fs ├── config.fs ├── main.fs ├── telnet.fs └── tests.fs ├── timers ├── blink.txt ├── configurable-timer.txt ├── measure.txt └── soft-rtc.txt ├── tools ├── I2Cscan.txt ├── assert.fs ├── bin-bcd.txt ├── caseEndcase.txt ├── clepsydra.txt ├── dataStructures.txt ├── dateTime.txt ├── defineVSPI.fs ├── dumpTool.txt ├── enum.fs ├── formatNumbers.txt ├── infix.txt ├── integerSinus.fs ├── raw-load.txt ├── strings.txt ├── structuresAdd.fs └── vt100terminal.txt └── trafficLights.txt /ADC/solarLightAnalyzer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/ADC/solarLightAnalyzer.txt -------------------------------------------------------------------------------- /DAC/DACcosinewave.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/DAC/DACcosinewave.txt -------------------------------------------------------------------------------- /DAC/DACdirectAccess.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/DAC/DACdirectAccess.txt -------------------------------------------------------------------------------- /DAC/DACusage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/DAC/DACusage.txt -------------------------------------------------------------------------------- /DAC/DAoutput.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/DAC/DAoutput.txt -------------------------------------------------------------------------------- /DAC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/DAC/README.md -------------------------------------------------------------------------------- /DAC/tones.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/DAC/tones.txt -------------------------------------------------------------------------------- /DHT22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/DHT22.txt -------------------------------------------------------------------------------- /ESP32forth70721a/ESP32forth70721a.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/ESP32forth70721a/ESP32forth70721a.ino -------------------------------------------------------------------------------- /ESP32forth70721a/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/ESP32forth70721a/README.md -------------------------------------------------------------------------------- /ESP32forth70721a/optional/README-optional.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/ESP32forth70721a/optional/README-optional.txt -------------------------------------------------------------------------------- /ESP32forth70721a/optional/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ESP32forth70721a/optional/assemblers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/ESP32forth70721a/optional/assemblers.h -------------------------------------------------------------------------------- /ESP32forth70721a/optional/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/ESP32forth70721a/optional/camera.h -------------------------------------------------------------------------------- /ESP32forth70721a/optional/espnow-voc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/ESP32forth70721a/optional/espnow-voc.h -------------------------------------------------------------------------------- /ESP32forth70721a/optional/http-client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/ESP32forth70721a/optional/http-client.h -------------------------------------------------------------------------------- /ESP32forth70721a/optional/interrupts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/ESP32forth70721a/optional/interrupts.h -------------------------------------------------------------------------------- /ESP32forth70721a/optional/oled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/ESP32forth70721a/optional/oled.h -------------------------------------------------------------------------------- /ESP32forth70721a/optional/rmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/ESP32forth70721a/optional/rmt.h -------------------------------------------------------------------------------- /ESP32forth70721a/optional/serial-bluetooth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/ESP32forth70721a/optional/serial-bluetooth.h -------------------------------------------------------------------------------- /ESP32forth70721a/optional/spi-flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/ESP32forth70721a/optional/spi-flash.h -------------------------------------------------------------------------------- /ESP32forth70721a/optional/spi-voc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/ESP32forth70721a/optional/spi-voc.h -------------------------------------------------------------------------------- /ESP32onSerial.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/ESP32onSerial.jpg -------------------------------------------------------------------------------- /LoRa/LoRaCommunication.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/LoRa/LoRaCommunication.txt -------------------------------------------------------------------------------- /LoRa/LoRaInitParams.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/LoRa/LoRaInitParams.txt -------------------------------------------------------------------------------- /LoRa/LoRaSettingUp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/LoRa/LoRaSettingUp.txt -------------------------------------------------------------------------------- /LoRa/SLAVinterfaceLoRa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/LoRa/SLAVinterfaceLoRa.txt -------------------------------------------------------------------------------- /LoRa/esp32serial2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/LoRa/esp32serial2.jpg -------------------------------------------------------------------------------- /LoRa/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/LoRa/readme.md -------------------------------------------------------------------------------- /LoRa/transmitDecode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/LoRa/transmitDecode.txt -------------------------------------------------------------------------------- /LoRa/transmitLoRaFromBOSS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/LoRa/transmitLoRaFromBOSS.txt -------------------------------------------------------------------------------- /OOF/miniOOF.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/OOF/miniOOF.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/README.md -------------------------------------------------------------------------------- /XTENSA/AVG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/XTENSA/AVG.txt -------------------------------------------------------------------------------- /XTENSA/AVG3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/XTENSA/AVG3.txt -------------------------------------------------------------------------------- /XTENSA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/XTENSA/README.md -------------------------------------------------------------------------------- /XTENSA/REVBITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/XTENSA/REVBITS.txt -------------------------------------------------------------------------------- /XTENSA/myMOVI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/XTENSA/myMOVI.txt -------------------------------------------------------------------------------- /XTENSA/myXtensaTests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/XTENSA/myXtensaTests.txt -------------------------------------------------------------------------------- /XTENSA/xtensaExtensions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/XTENSA/xtensaExtensions.txt -------------------------------------------------------------------------------- /XTENSA/xtensaMacros.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/XTENSA/xtensaMacros.txt -------------------------------------------------------------------------------- /__documentation/CN/ESP32forthZhangBen_CN_V1_6_.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__documentation/CN/ESP32forthZhangBen_CN_V1_6_.pdf -------------------------------------------------------------------------------- /__documentation/CN/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /__documentation/DE/ESP32forthGrosseBuch_DE_V2_0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__documentation/DE/ESP32forthGrosseBuch_DE_V2_0.pdf -------------------------------------------------------------------------------- /__documentation/DE/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /__documentation/DE/couvertureLivreEsp32_DE.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__documentation/DE/couvertureLivreEsp32_DE.jpg -------------------------------------------------------------------------------- /__documentation/EN/ESP32forthReferenceManual_EN_V_1_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__documentation/EN/ESP32forthReferenceManual_EN_V_1_2.pdf -------------------------------------------------------------------------------- /__documentation/EN/GreatBookESP32forth_EN_v1_17.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__documentation/EN/GreatBookESP32forth_EN_v1_17.pdf -------------------------------------------------------------------------------- /__documentation/ES/GranLibroESP32forth_ES_V1_17.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__documentation/ES/GranLibroESP32forth_ES_V1_17.pdf -------------------------------------------------------------------------------- /__documentation/ES/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /__documentation/ESP32forth-book.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__documentation/ESP32forth-book.zip -------------------------------------------------------------------------------- /__documentation/FR/GrandLivreESP32forth_FR_V2_0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__documentation/FR/GrandLivreESP32forth_FR_V2_0.pdf -------------------------------------------------------------------------------- /__documentation/FR/ManuelReferenceESP32forth_FR_V_1_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__documentation/FR/ManuelReferenceESP32forth_FR_V_1_2.pdf -------------------------------------------------------------------------------- /__documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__documentation/README.md -------------------------------------------------------------------------------- /__documentation/couvertureLivreEsp32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__documentation/couvertureLivreEsp32.png -------------------------------------------------------------------------------- /__my projects/DAC/autoexec.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/DAC/autoexec.fs -------------------------------------------------------------------------------- /__my projects/DAC/config.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/DAC/config.fs -------------------------------------------------------------------------------- /__my projects/DAC/frequencyNotes.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/DAC/frequencyNotes.fs -------------------------------------------------------------------------------- /__my projects/DAC/main.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/DAC/main.fs -------------------------------------------------------------------------------- /__my projects/DAC/tones.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/DAC/tones.fs -------------------------------------------------------------------------------- /__my projects/DAC/tonesTest.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/DAC/tonesTest.fs -------------------------------------------------------------------------------- /__my projects/GPIOs/74HC595/74HC595.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/GPIOs/74HC595/74HC595.fs -------------------------------------------------------------------------------- /__my projects/GPIOs/74HC595/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /__my projects/GPIOs/74HC595/SPIinit.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/GPIOs/74HC595/SPIinit.fs -------------------------------------------------------------------------------- /__my projects/GPIOs/74HC595/autoexec.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/GPIOs/74HC595/autoexec.fs -------------------------------------------------------------------------------- /__my projects/GPIOs/74HC595/config.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/GPIOs/74HC595/config.fs -------------------------------------------------------------------------------- /__my projects/GPIOs/74HC595/main.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/GPIOs/74HC595/main.fs -------------------------------------------------------------------------------- /__my projects/GPIOs/74HC595/tests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/GPIOs/74HC595/tests.fs -------------------------------------------------------------------------------- /__my projects/GPIOs/direct registers/autoexec.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/GPIOs/direct registers/autoexec.fs -------------------------------------------------------------------------------- /__my projects/GPIOs/direct registers/config.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/GPIOs/direct registers/config.fs -------------------------------------------------------------------------------- /__my projects/GPIOs/direct registers/defRegsMasks.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/GPIOs/direct registers/defRegsMasks.fs -------------------------------------------------------------------------------- /__my projects/GPIOs/direct registers/main.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/GPIOs/direct registers/main.fs -------------------------------------------------------------------------------- /__my projects/GPIOs/direct registers/trafficLight.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/GPIOs/direct registers/trafficLight.fs -------------------------------------------------------------------------------- /__my projects/LoRa/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /__my projects/display/ILI9341/ILI9341onBreadBoard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/display/ILI9341/ILI9341onBreadBoard.jpg -------------------------------------------------------------------------------- /__my projects/display/ILI9341/ILI9341voc.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/display/ILI9341/ILI9341voc.fs -------------------------------------------------------------------------------- /__my projects/display/ILI9341/ILI9341waveshare.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/display/ILI9341/ILI9341waveshare.fs -------------------------------------------------------------------------------- /__my projects/display/ILI9341/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /__my projects/display/ILI9341/assert.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/display/ILI9341/assert.fs -------------------------------------------------------------------------------- /__my projects/display/ILI9341/config.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/display/ILI9341/config.fs -------------------------------------------------------------------------------- /__my projects/display/ILI9341/graphics.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/display/ILI9341/graphics.fs -------------------------------------------------------------------------------- /__my projects/display/ILI9341/main.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/display/ILI9341/main.fs -------------------------------------------------------------------------------- /__my projects/display/ILI9341/tests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/display/ILI9341/tests.fs -------------------------------------------------------------------------------- /__my projects/display/OLED SSD1306 128x32/TEMPVS FVGIT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/display/OLED SSD1306 128x32/TEMPVS FVGIT/README.md -------------------------------------------------------------------------------- /__my projects/display/OLED SSD1306 128x32/TEMPVS FVGIT/RTClock.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/display/OLED SSD1306 128x32/TEMPVS FVGIT/RTClock.fs -------------------------------------------------------------------------------- /__my projects/display/OLED SSD1306 128x32/TEMPVS FVGIT/autoexec.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/display/OLED SSD1306 128x32/TEMPVS FVGIT/autoexec.fs -------------------------------------------------------------------------------- /__my projects/display/OLED SSD1306 128x32/TEMPVS FVGIT/clepsydra.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/display/OLED SSD1306 128x32/TEMPVS FVGIT/clepsydra.fs -------------------------------------------------------------------------------- /__my projects/display/OLED SSD1306 128x32/TEMPVS FVGIT/config.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/display/OLED SSD1306 128x32/TEMPVS FVGIT/config.fs -------------------------------------------------------------------------------- /__my projects/display/OLED SSD1306 128x32/TEMPVS FVGIT/main.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/display/OLED SSD1306 128x32/TEMPVS FVGIT/main.fs -------------------------------------------------------------------------------- /__my projects/display/OLED SSD1306 128x32/TEMPVS FVGIT/oledToolst.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/display/OLED SSD1306 128x32/TEMPVS FVGIT/oledToolst.fs -------------------------------------------------------------------------------- /__my projects/display/OLED SSD1306 128x32/TEMPVS FVGIT/strings.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/display/OLED SSD1306 128x32/TEMPVS FVGIT/strings.fs -------------------------------------------------------------------------------- /__my projects/display/OLED SSD1306 128x32/TEMPVS FVGIT/tempusFugit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/display/OLED SSD1306 128x32/TEMPVS FVGIT/tempusFugit.jpg -------------------------------------------------------------------------------- /__my projects/display/OLED SSD1306 128x32/autoexec.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/display/OLED SSD1306 128x32/autoexec.fs -------------------------------------------------------------------------------- /__my projects/display/OLED SSD1306 128x32/config.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/display/OLED SSD1306 128x32/config.fs -------------------------------------------------------------------------------- /__my projects/display/OLED SSD1306 128x32/extendOledVoc.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/display/OLED SSD1306 128x32/extendOledVoc.fs -------------------------------------------------------------------------------- /__my projects/display/OLED SSD1306 128x32/main.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/display/OLED SSD1306 128x32/main.fs -------------------------------------------------------------------------------- /__my projects/display/OLED SSD1306 128x32/oledToolst.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/display/OLED SSD1306 128x32/oledToolst.fs -------------------------------------------------------------------------------- /__my projects/esp_err.V20.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/esp_err.V20.fs -------------------------------------------------------------------------------- /__my projects/esp_err.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/esp_err.fs -------------------------------------------------------------------------------- /__my projects/robotics/littleRobot/autoexec.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/robotics/littleRobot/autoexec.fs -------------------------------------------------------------------------------- /__my projects/robotics/littleRobot/config.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/robotics/littleRobot/config.fs -------------------------------------------------------------------------------- /__my projects/robotics/littleRobot/main.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/robotics/littleRobot/main.fs -------------------------------------------------------------------------------- /__my projects/sensors/B25 Voltage Module/I2Cscan.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/sensors/B25 Voltage Module/I2Cscan.fs -------------------------------------------------------------------------------- /__my projects/sensors/B25 Voltage Module/assert.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/sensors/B25 Voltage Module/assert.fs -------------------------------------------------------------------------------- /__my projects/sensors/B25 Voltage Module/autoexec.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/sensors/B25 Voltage Module/autoexec.fs -------------------------------------------------------------------------------- /__my projects/sensors/B25 Voltage Module/b25.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/sensors/B25 Voltage Module/b25.fs -------------------------------------------------------------------------------- /__my projects/sensors/B25 Voltage Module/buzzer.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/sensors/B25 Voltage Module/buzzer.fs -------------------------------------------------------------------------------- /__my projects/sensors/B25 Voltage Module/config.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/sensors/B25 Voltage Module/config.fs -------------------------------------------------------------------------------- /__my projects/sensors/B25 Voltage Module/documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/sensors/B25 Voltage Module/documentation/README.md -------------------------------------------------------------------------------- /__my projects/sensors/B25 Voltage Module/documentation/voltageSensor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/sensors/B25 Voltage Module/documentation/voltageSensor.jpg -------------------------------------------------------------------------------- /__my projects/sensors/B25 Voltage Module/documentation/wired-b25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/sensors/B25 Voltage Module/documentation/wired-b25.jpg -------------------------------------------------------------------------------- /__my projects/sensors/B25 Voltage Module/main.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/sensors/B25 Voltage Module/main.fs -------------------------------------------------------------------------------- /__my projects/sensors/B25 Voltage Module/oledSSD1306.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/sensors/B25 Voltage Module/oledSSD1306.fs -------------------------------------------------------------------------------- /__my projects/sensors/B25 Voltage Module/tests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/sensors/B25 Voltage Module/tests.fs -------------------------------------------------------------------------------- /__my projects/sensors/DHT11/DHT22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/sensors/DHT11/DHT22.txt -------------------------------------------------------------------------------- /__my projects/sensors/DHT11/autoexec.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/sensors/DHT11/autoexec.fs -------------------------------------------------------------------------------- /__my projects/sensors/DHT11/config.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/sensors/DHT11/config.fs -------------------------------------------------------------------------------- /__my projects/sensors/DHT11/dht11.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/sensors/DHT11/dht11.fs -------------------------------------------------------------------------------- /__my projects/sensors/DHT11/main.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/sensors/DHT11/main.fs -------------------------------------------------------------------------------- /__my projects/sensors/DS18B20/README.md: -------------------------------------------------------------------------------- 1 |

DS18B20

2 | 3 | -------------------------------------------------------------------------------- /__my projects/sensors/DS18B20/config.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/sensors/DS18B20/config.fs -------------------------------------------------------------------------------- /__my projects/sensors/DS18B20/documents/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /__my projects/sensors/DS18B20/ds18b20.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/sensors/DS18B20/ds18b20.fs -------------------------------------------------------------------------------- /__my projects/sensors/DS18B20/ds18b20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/sensors/DS18B20/ds18b20.jpg -------------------------------------------------------------------------------- /__my projects/sensors/DS18B20/main.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/sensors/DS18B20/main.fs -------------------------------------------------------------------------------- /__my projects/sensors/DS18B20/tests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/sensors/DS18B20/tests.fs -------------------------------------------------------------------------------- /__my projects/sensors/ky022/autoexec.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/sensors/ky022/autoexec.fs -------------------------------------------------------------------------------- /__my projects/sensors/ky022/config.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/sensors/ky022/config.fs -------------------------------------------------------------------------------- /__my projects/sensors/ky022/documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/sensors/ky022/documentation/README.md -------------------------------------------------------------------------------- /__my projects/sensors/ky022/documentation/ky-022-IR-receiver.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/sensors/ky022/documentation/ky-022-IR-receiver.jpg -------------------------------------------------------------------------------- /__my projects/sensors/ky022/dumpTool.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/sensors/ky022/dumpTool.fs -------------------------------------------------------------------------------- /__my projects/sensors/ky022/esp_err.V20.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/sensors/ky022/esp_err.V20.fs -------------------------------------------------------------------------------- /__my projects/sensors/ky022/ky022.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/sensors/ky022/ky022.fs -------------------------------------------------------------------------------- /__my projects/sensors/ky022/main.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/sensors/ky022/main.fs -------------------------------------------------------------------------------- /__my projects/sensors/ky022/select_protocol.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/sensors/ky022/select_protocol.fs -------------------------------------------------------------------------------- /__my projects/soundSynth/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /__my projects/soundSynth/autoexec.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/soundSynth/autoexec.fs -------------------------------------------------------------------------------- /__my projects/soundSynth/config.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/soundSynth/config.fs -------------------------------------------------------------------------------- /__my projects/soundSynth/main.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/soundSynth/main.fs -------------------------------------------------------------------------------- /__my projects/soundSynth/tests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__my projects/soundSynth/tests.fs -------------------------------------------------------------------------------- /__sandbox/NEXUS SENSOR/I2Cscan.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__sandbox/NEXUS SENSOR/I2Cscan.fs -------------------------------------------------------------------------------- /__sandbox/NEXUS SENSOR/apds9960.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__sandbox/NEXUS SENSOR/apds9960.fs -------------------------------------------------------------------------------- /__sandbox/NEXUS SENSOR/assert.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__sandbox/NEXUS SENSOR/assert.fs -------------------------------------------------------------------------------- /__sandbox/NEXUS SENSOR/autoexec.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__sandbox/NEXUS SENSOR/autoexec.fs -------------------------------------------------------------------------------- /__sandbox/NEXUS SENSOR/bme688.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__sandbox/NEXUS SENSOR/bme688.fs -------------------------------------------------------------------------------- /__sandbox/NEXUS SENSOR/config.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__sandbox/NEXUS SENSOR/config.fs -------------------------------------------------------------------------------- /__sandbox/NEXUS SENSOR/documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__sandbox/NEXUS SENSOR/documentation/README.md -------------------------------------------------------------------------------- /__sandbox/NEXUS SENSOR/documentation/SENSE User Guide Version 1.02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__sandbox/NEXUS SENSOR/documentation/SENSE User Guide Version 1.02.pdf -------------------------------------------------------------------------------- /__sandbox/NEXUS SENSOR/documentation/nexus-sense-pins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__sandbox/NEXUS SENSOR/documentation/nexus-sense-pins.png -------------------------------------------------------------------------------- /__sandbox/NEXUS SENSOR/extendForthVoc.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__sandbox/NEXUS SENSOR/extendForthVoc.fs -------------------------------------------------------------------------------- /__sandbox/NEXUS SENSOR/main.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__sandbox/NEXUS SENSOR/main.fs -------------------------------------------------------------------------------- /__sandbox/NEXUS SENSOR/nexus.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__sandbox/NEXUS SENSOR/nexus.fs -------------------------------------------------------------------------------- /__sandbox/NEXUS SENSOR/pcf8523.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__sandbox/NEXUS SENSOR/pcf8523.fs -------------------------------------------------------------------------------- /__sandbox/NEXUS SENSOR/tests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/__sandbox/NEXUS SENSOR/tests.fs -------------------------------------------------------------------------------- /__sandbox/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /assembler/xtensa.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/assembler/xtensa.pdf -------------------------------------------------------------------------------- /binaries/MyFFshellDistribution45.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/binaries/MyFFshellDistribution45.zip -------------------------------------------------------------------------------- /binaries/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /binaries/WROOM-32/ESP32forth70721_WROOM32.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/binaries/WROOM-32/ESP32forth70721_WROOM32.zip -------------------------------------------------------------------------------- /binaries/WROOM-32/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /displays/MAX7219/32x8ledsGraphics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/displays/MAX7219/32x8ledsGraphics.txt -------------------------------------------------------------------------------- /displays/MAX7219/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/displays/MAX7219/README.md -------------------------------------------------------------------------------- /displays/MAX7219/batDisplay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/displays/MAX7219/batDisplay.jpg -------------------------------------------------------------------------------- /displays/MAX7219/dice-roll.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/displays/MAX7219/dice-roll.txt -------------------------------------------------------------------------------- /displays/MAX7219/manageMAX7219.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/displays/MAX7219/manageMAX7219.txt -------------------------------------------------------------------------------- /displays/MAX7219/testMAX7219.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/displays/MAX7219/testMAX7219.txt -------------------------------------------------------------------------------- /displays/SSD1306/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/displays/SSD1306/README.md -------------------------------------------------------------------------------- /displays/SSD1306/SSD1306-5x8rusFonts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/displays/SSD1306/SSD1306-5x8rusFonts.txt -------------------------------------------------------------------------------- /displays/SSD1306/SSD1306commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/displays/SSD1306/SSD1306commands.txt -------------------------------------------------------------------------------- /displays/SSD1306/SSD1306dispChars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/displays/SSD1306/SSD1306dispChars.txt -------------------------------------------------------------------------------- /displays/SSD1306/SSD1306graphics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/displays/SSD1306/SSD1306graphics.txt -------------------------------------------------------------------------------- /displays/SSD1306/SSD1306sprites.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/displays/SSD1306/SSD1306sprites.txt -------------------------------------------------------------------------------- /displays/SSD1306/SSD1306wiring.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/displays/SSD1306/SSD1306wiring.jpg -------------------------------------------------------------------------------- /displays/charTable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/displays/charTable.txt -------------------------------------------------------------------------------- /displays/chineseChars.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/displays/chineseChars.txt -------------------------------------------------------------------------------- /displays/sprites.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/displays/sprites.txt -------------------------------------------------------------------------------- /eagle_soc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/eagle_soc.txt -------------------------------------------------------------------------------- /encoder/KY040encoder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/encoder/KY040encoder.txt -------------------------------------------------------------------------------- /encoder/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/encoder/readme.md -------------------------------------------------------------------------------- /encoder/rotaryEncoderBread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/encoder/rotaryEncoderBread.png -------------------------------------------------------------------------------- /espnow/README.md: -------------------------------------------------------------------------------- 1 |

ESPNOW development

2 | -------------------------------------------------------------------------------- /espnow/datas-structs.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/espnow/datas-structs.fs -------------------------------------------------------------------------------- /espnow/espnow.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/espnow/espnow.fs -------------------------------------------------------------------------------- /espnow/mac-address.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/espnow/mac-address.fs -------------------------------------------------------------------------------- /espnow/main.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/espnow/main.fs -------------------------------------------------------------------------------- /espnow/oled128x32-display.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/espnow/oled128x32-display.fs -------------------------------------------------------------------------------- /espnow/peer-list.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/espnow/peer-list.fs -------------------------------------------------------------------------------- /espnow/tests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/espnow/tests.fs -------------------------------------------------------------------------------- /food/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/food/README.md -------------------------------------------------------------------------------- /food/food.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/food/food.txt -------------------------------------------------------------------------------- /http/httpGetTime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/http/httpGetTime.txt -------------------------------------------------------------------------------- /http/httpSendData.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/http/httpSendData.txt -------------------------------------------------------------------------------- /http/httptest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/http/httptest.txt -------------------------------------------------------------------------------- /interruptions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/interruptions.txt -------------------------------------------------------------------------------- /leapYear.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/leapYear.txt -------------------------------------------------------------------------------- /littleRobot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/littleRobot.txt -------------------------------------------------------------------------------- /missing_words/wordsList.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/missing_words/wordsList.txt -------------------------------------------------------------------------------- /optional/oled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/optional/oled.h -------------------------------------------------------------------------------- /optional/spi.userwords.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/optional/spi.userwords.h -------------------------------------------------------------------------------- /randomNumbers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/randomNumbers.txt -------------------------------------------------------------------------------- /registersdefinitions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/registersdefinitions.txt -------------------------------------------------------------------------------- /regsDirectAccess.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/regsDirectAccess.txt -------------------------------------------------------------------------------- /regsManipulations.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/regsManipulations.txt -------------------------------------------------------------------------------- /serial2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/serial2.txt -------------------------------------------------------------------------------- /sinus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/sinus.txt -------------------------------------------------------------------------------- /sockets/sockerErrno.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/sockets/sockerErrno.txt -------------------------------------------------------------------------------- /sockets/testGethostbyname.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/sockets/testGethostbyname.txt -------------------------------------------------------------------------------- /spiffs/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/spiffs/README.MD -------------------------------------------------------------------------------- /spiffs/SSD1306.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/spiffs/SSD1306.fs -------------------------------------------------------------------------------- /spiffs/SSD1306/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/spiffs/SSD1306/README.md -------------------------------------------------------------------------------- /spiffs/SSD1306/commands.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/spiffs/SSD1306/commands.fs -------------------------------------------------------------------------------- /spiffs/SSD1306/config.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/spiffs/SSD1306/config.fs -------------------------------------------------------------------------------- /spiffs/defineVSPI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/spiffs/defineVSPI.txt -------------------------------------------------------------------------------- /spiffs/defpin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/spiffs/defpin.txt -------------------------------------------------------------------------------- /spiffs/dumpTool.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/spiffs/dumpTool.txt -------------------------------------------------------------------------------- /spiffs/manageMAX7219.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/spiffs/manageMAX7219.txt -------------------------------------------------------------------------------- /spiffs/registersDefinitions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/spiffs/registersDefinitions.txt -------------------------------------------------------------------------------- /spiffs/xtensaExtensions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/spiffs/xtensaExtensions.txt -------------------------------------------------------------------------------- /spiffs/xtensaMacros.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/spiffs/xtensaMacros.txt -------------------------------------------------------------------------------- /structExamples.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/structExamples.txt -------------------------------------------------------------------------------- /telnet/autoexec.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/telnet/autoexec.fs -------------------------------------------------------------------------------- /telnet/config.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/telnet/config.fs -------------------------------------------------------------------------------- /telnet/main.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/telnet/main.fs -------------------------------------------------------------------------------- /telnet/telnet.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/telnet/telnet.fs -------------------------------------------------------------------------------- /telnet/tests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/telnet/tests.fs -------------------------------------------------------------------------------- /timers/blink.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/timers/blink.txt -------------------------------------------------------------------------------- /timers/configurable-timer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/timers/configurable-timer.txt -------------------------------------------------------------------------------- /timers/measure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/timers/measure.txt -------------------------------------------------------------------------------- /timers/soft-rtc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/timers/soft-rtc.txt -------------------------------------------------------------------------------- /tools/I2Cscan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/tools/I2Cscan.txt -------------------------------------------------------------------------------- /tools/assert.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/tools/assert.fs -------------------------------------------------------------------------------- /tools/bin-bcd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/tools/bin-bcd.txt -------------------------------------------------------------------------------- /tools/caseEndcase.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/tools/caseEndcase.txt -------------------------------------------------------------------------------- /tools/clepsydra.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/tools/clepsydra.txt -------------------------------------------------------------------------------- /tools/dataStructures.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/tools/dataStructures.txt -------------------------------------------------------------------------------- /tools/dateTime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/tools/dateTime.txt -------------------------------------------------------------------------------- /tools/defineVSPI.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/tools/defineVSPI.fs -------------------------------------------------------------------------------- /tools/dumpTool.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/tools/dumpTool.txt -------------------------------------------------------------------------------- /tools/enum.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/tools/enum.fs -------------------------------------------------------------------------------- /tools/formatNumbers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/tools/formatNumbers.txt -------------------------------------------------------------------------------- /tools/infix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/tools/infix.txt -------------------------------------------------------------------------------- /tools/integerSinus.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/tools/integerSinus.fs -------------------------------------------------------------------------------- /tools/raw-load.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/tools/raw-load.txt -------------------------------------------------------------------------------- /tools/strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/tools/strings.txt -------------------------------------------------------------------------------- /tools/structuresAdd.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/tools/structuresAdd.fs -------------------------------------------------------------------------------- /tools/vt100terminal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/tools/vt100terminal.txt -------------------------------------------------------------------------------- /trafficLights.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MPETREMANN11/ESP32forth/HEAD/trafficLights.txt --------------------------------------------------------------------------------