Skip to content

Commit

Permalink
feat(version): release 0.2.1 version
Browse files Browse the repository at this point in the history
  • Loading branch information
gokhangunduz committed Jan 17, 2024
1 parent 3595e24 commit 98bbf9e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion app/src/jobs/rosBarcodeListener.job.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ export default async function rosBarcodeListenerJob() {
"std_msgs/msg/String",
"barcode",
async (msg: any) => {
console.log("/barcode", msg);

if (msg.data) {
try {
const message = await JSON.parse(msg.data);
Expand All @@ -33,7 +35,7 @@ export default async function rosBarcodeListenerJob() {
);
} catch (error) {
console.error(
`[rosBarcodeListenerJob] ROS 'barcode' konusunu dinlerken hata oluştu.`
`[rosBarcodeListenerJob] Error of create subscription to topic /barcode`
);
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "physical-robot-services",
"version": "0.2.0",
"version": "0.2.1",
"description": "Physical Robot Services",
"main": "app/app.ts",
"scripts": {
Expand Down

0 comments on commit 98bbf9e

Please sign in to comment.