Differences between revisions 8 and 9
Revision 8 as of 2019-05-17 21:15:57
Size: 881
Editor: PieterSmit
Comment:
Revision 9 as of 2019-05-18 01:17:37
Size: 1389
Editor: PieterSmit
Comment:
Deletions are marked like this. Additions are marked like this.
Line 12: Line 12:
 * github project for ESP https://github.com/cnlohr/esp8266ws2812i2s  * github project for ESP https://github.com/cnlohr/esp8266ws2812i2
Line 14: Line 14:


== 2019 connect old esp8266 Huzzah ==
 * 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)
}}}

esp8266

2019 connect old esp8266 Huzzah

  • 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)

...

esp8266 (last edited 2019-05-29 08:28:55 by PieterSmit)