Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Initial commit
  • Loading branch information
ryangriggs authored Apr 25, 2024
1 parent 1e083c3 commit 9ab1677
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,26 @@
# mqttpoke
MQTT publisher/subscriber web app with support for binary datatypes

Most MQTT pub/sub web apps don't support native binary datatypes (signed/unsigned integer, float, boolean). mqttpoke allows you to subscribe and publish to these topics and natively view and edit their values without needing to perform conversions or use other time-consuming tricks.

No server required: runs in modern browsers.

[Run the app on Github Pages](https://x)

**FIREFOX BUG: in Firefox you must change websockets configuration to use HTTP/1.1 instead of HTTP/2 or wss (mqtt) connections will fail. See [this article](https://support.mozilla.org/en-US/questions/1324001) for details.**
- Open [about:config](about:config)
- Search for setting "network.http.http2.websockets" (or just search for "websockets")
- Change value from "True" to "False"

Datatypes supported:
- string (ascii)
- signed int16
- unsigned int16
- signed int32
- unsigned int32
- boolean
- float32

Support for additional datatypes can be added as needed.

For any questions, contact me or file an issue.

0 comments on commit 9ab1677

Please sign in to comment.