Skip to content

abobija/ws32

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 

Repository files navigation

ws32

ESP32 Lua NodeMCU WebSocket Client Library

Demo

WebSocket Client, Programming ESP32 in Lua

Usage

  require('ws32_client')
  .on('connection', function(ws)
      print('WS connected')
      ws.send('Hello!')
  end)
  .on('receive', function(data, ws)
      print('WS received:', data)
  end)
  .connect('ws://demos.kaazing.com:80/echo')

Dependencies

The library depends on the following NodeMCU modules:

  • bit
  • net

About

🔌 ESP32 Lua NodeMCU WebSocket Client Library

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages