The workflow JSON
Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →
{
"id": "demo-08-reset",
"name": "08 - Hourly Demo Reset",
"nodes": [
{
"parameters": {
"rule": {
"interval": [
{
"field": "hours",
"hoursInterval": 1
}
]
}
},
"id": "reset-schedule",
"name": "Every Hour",
"type": "n8n-nodes-base.scheduleTrigger",
"typeVersion": 1.2,
"position": [
-140,
0
]
},
{
"parameters": {
"serviceName": {
"__rl": true,
"mode": "id",
"value": "/rover/reset_demo"
},
"serviceType": {
"__rl": true,
"mode": "id",
"value": "std_srvs/srv/Trigger"
},
"requestInputMode": "raw",
"requestJson": "{}",
"timeoutMs": 30000
},
"id": "reset-call",
"name": "Reset the Rover",
"type": "@fhnw-rover/n8n-nodes-ros2.rosServiceCall",
"typeVersion": 1,
"position": [
100,
0
],
"credentials": {
"rosBridgeApi": {
"name": "<your credential>"
}
}
},
{
"parameters": {
"topicName": {
"__rl": true,
"mode": "id",
"value": "/rover/notifications"
},
"messageType": {
"__rl": true,
"mode": "id",
"value": "std_msgs/msg/String"
},
"messageInputMode": "raw",
"messageJson": "={{ JSON.stringify({ data: 'Hourly reset: ' + $json.response.message }) }}",
"options": {}
},
"id": "reset-notify",
"name": "Announce the Reset",
"type": "@fhnw-rover/n8n-nodes-ros2.rosTopicPublish",
"typeVersion": 1,
"position": [
340,
0
],
"credentials": {
"rosBridgeApi": {
"name": "<your credential>"
}
}
}
],
"connections": {
"Every Hour": {
"main": [
[
{
"node": "Reset the Rover",
"type": "main",
"index": 0
}
]
]
},
"Reset the Rover": {
"main": [
[
{
"node": "Announce the Reset",
"type": "main",
"index": 0
}
]
]
}
},
"active": true,
"settings": {
"executionOrder": "v1"
}
}
Credentials you'll need
Each integration node will prompt for credentials when you import. We strip credential IDs before publishing — you'll add your own.
rosBridgeApi
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
08 - Hourly Demo Reset. Uses @fhnw-rover/n8n-nodes-ros2. Scheduled trigger; 3 nodes.
Source: https://github.com/sacovo/n8n-nodes-ros2/blob/5c0a3f2fde70374468e4f27f89256af0a4cee400/demo/workflows/08-hourly-reset.json — original creator credit. Request a take-down →
Related workflows
Workflows that share integrations, category, or trigger type with this one. All free to copy and import.
API Health Check. Uses httpRequest, emailSend. Scheduled trigger; 5 nodes.
Sync Asana task due dates to Google Calendar. Uses asana, googleCalendar. Scheduled trigger; 17 nodes.
backup. Uses googleDrive, httpRequest. Scheduled trigger; 15 nodes.