Differences between revisions 10 and 21 (spanning 11 versions)
Revision 10 as of 2019-05-18 03:46:23
Size: 2206
Editor: PieterSmit
Comment:
Revision 21 as of 2024-07-14 10:06:45
Size: 3289
Editor: PieterSmit
Comment:
Deletions are marked like this. Additions are marked like this.
Line 3: Line 3:
= Rust embedded esp32 =
 * IDF - Iot Development Framework.
 * [[https://www.youtube.com/watch?v=o8yNNVFzNnM|YouTube]] => [[https://github.com/flyaruu/rust-on-esp32|GitHub]] => [[https://github.com/esp-rs/esp-idf-template|GitHub template]]
 * Install pre-requisites {{{
sudo apt install pkg-config
sudo apt install libssl-dev
sudo apt install libudev
#
cargo install cargo-generate
cargo install ldproxy
cargo install espup
cargo install espflash
cargo install cargo-espflash
}}}
 * Check esp usb/serial connection {{
cargo espflash board-info


}}}
Line 4: Line 24:
 * Links [[Sonoff]] , [[MicroPython]]  * Links [[Sonoff]] , [[MicroPython]] , [[mqtt]] , [[ds18b20]] , [[RabbitMq]]
Line 17: Line 37:
 * https://www.adafruit.com/product/2471
Line 51: Line 72:
...
Wrote 615424 bytes at 0x00000000 in 67.2 seconds (73.2 kbit/s)...

Leaving...
Hard resetting...
Line 53: Line 80:
=== Setup Arduino for esp8266 ===
 * Have to download Arduino linux tar file
 * Un-tar and sudo ./install.sh to install
 * Add aditional board url "http://arduino.esp8266.com/stable/package_esp8266com_index.json"
 * Under boards, open board manager and search for esp8266, add
 * Now select board, NodeMCU 0.9 ESP-12

Rust embedded esp32

  • IDF - Iot Development Framework.
  • YouTube => GitHub => GitHub template

  • Install pre-requisites

    sudo apt install pkg-config
    sudo apt install libssl-dev
    sudo apt install libudev
    #
    cargo install cargo-generate
    cargo install ldproxy
    cargo install espup
    cargo install espflash
    cargo install cargo-espflash
  • Check esp usb/serial connection {{

cargo espflash board-info

}}}

esp8266

2019 connect old esp8266 Huzzah

  • https://www.adafruit.com/product/2471

  • Connect to usb using FDDI 3.3v cable (White usb plug)
    • Connect to serial /dev/ttyUSB using screen

      sudo screen /dev/ttyUSB0
    • When i click the reset button on esp8266 i get the welcome message

      NodeMCU 0.9.5 build 20150318  powered by Lua 5.1.4
      lua: cannot open init.lua
    • Switch on red led on esp8266 using lua commands

      gpio.mode(3, gpio.OUTPUT)
      gpio.write(3, gpio.LOW)
      #Pause red led on
      gpio.write(3, gpio.HIGH)

Program the HUZZAH ESP8266

For the HUZZAH ESP8266 breakout buttons for GPIO0 and RESET are built in to the board. Hold GPIO0 down, then press and release RESET (while still holding GPIO0), and finally release GPIO0.

$ sudo esptool --port /dev/ttyUSB0 erase_flash

  • Upload firmware

    $ esptool --port /dev/ttyUSB0 --baud 460800 write_flash --flash_size=detect 0 firmware.bin
    ## Press hold left button, then click reset, upload begins.
    esptool.py v2.1
    Connecting........_____....._____....._____....._____....._____....._____.....
    Detecting chip type... ESP8266
    Chip is ESP8266
    Enabling default SPI flash mode...
    Configuring flash size...
    Auto-detected Flash size: 4MB
    Erasing flash...
    Flash params set to 0x0040
    Took 2.55s to erase flash block
    Writing at 0x00015800... (14 %)
    ...
    Wrote 615424 bytes at 0x00000000 in 67.2 seconds (73.2 kbit/s)...
    
    Leaving...
    Hard resetting...

Setup Arduino for esp8266

...

esp8266 (last edited 2024-07-15 08:16:45 by PieterSmit)