Skip to content
This repository was archived by the owner on Jul 10, 2025. It is now read-only.

Commit 36c3779

Browse files
authored
Merge pull request #133 from danditomaso/add-reply-and-emoji-support
add emoji and reply support
2 parents 4fd3eb5 + 72cc480 commit 36c3779

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

packages/core/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@meshtastic/core",
3-
"version": "2.6.2",
3+
"version": "2.6.3",
44
"exports": {
55
".": "./mod.ts"
66
},

packages/core/src/meshDevice.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,8 @@ export class MeshDevice {
9696
destination?: Destination,
9797
wantAck?: boolean,
9898
channel?: ChannelNumber,
99+
replyId?: number,
100+
emoji?: number,
99101
): Promise<number> {
100102
this.log.debug(
101103
Emitter[Emitter.SendText],
@@ -114,6 +116,8 @@ export class MeshDevice {
114116
wantAck,
115117
false,
116118
true,
119+
replyId,
120+
emoji,
117121
);
118122
}
119123

0 commit comments

Comments
 (0)