Skip to content
/ ws32 Public
forked from abobija/ws32

🔌 ESP32 Lua NodeMCU WebSocket Client Library

License

Notifications You must be signed in to change notification settings

tjakober/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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Lua 100.0%