192 questions
0
votes
0
answers
63
views
AWS LoRaWAN uplink messages contain no wireless metadata
I'm playing around with some LoRaWAN devices connected to AWS IoT Core, and have managed to send downlink messages and receive uplink messages through a AWS IoT core destination which is in turn ...
0
votes
0
answers
105
views
AWS IoT MQTT: Devices randomly show as offline when subscribing to over 50 things in iOS app
I’m developing an iOS app using AWS IoT Core and MQTT to manage smart home devices. Each device has a corresponding AWS IoT "thing", and the app subscribes to the shadow delta topic of each ...
1
vote
2
answers
87
views
Why does AtMostOnce deliver to multiple devices? Is there a way to deliver to a single device?
I am trying AWS IoT Core and it seems when you publish message to a topic - even though I select AtMostOnce in QoS - it delivers the same message to all devices who listens this topic. Is it possible ...
0
votes
0
answers
17k
views
[NotAuthorizedException: Access to Identity 'us-west-2:87acc713-xxxx-xxxx-xxxx-xxxxxxxxxx' is forbidden.]
I'm using AWS Amplify in order to use PubSub for publishing to AWS IoT Core, for that I've setup User and Identity pools, in identity pool I've setup the identity providers as this user pool, but when ...
0
votes
1
answer
90
views
How to allow an admin to override user IoT commands in AWS IoT Core (Device Shadow)?
I’m working with AWS IoT Core and using Device Shadows to control an IoT device (ESP32 connected to a relay to turn ON/OFF a motor), Right now, any user can turn the motor ON/OFF by updating the ...
0
votes
0
answers
395
views
Error "TargetNotConnected" when attempting to start an SSM session with IoT device using boto3
I'm working with AWS Systems Manager (SSM) to remotely connect to an IoT device via SSH using a Python script. The script uses the boto3 library to start an SSM session, but I'm encountering an error ...
0
votes
0
answers
49
views
Last will testimony (LWT) not working on AWS IoT Core
WiFiClientSecure net;
PubSubClient client(net);
char lwtMessage[256];
void setup() {
Serial.begin(115200);
pinMode(RELAY_PIN, OUTPUT);
connectWiFi();
// Prepare JSON for Last Will ...
0
votes
0
answers
103
views
How can I stream the AWS IOT sitewise data to my react real-time dashboard application?
Requirement:
I have to create a real-time dashboard. AWS IOT site-wise should be the source of the data.
As I have explored aws iot sitewise does not natively support websocket or mqtt to fetch real-...
0
votes
0
answers
177
views
SiMCOM7600 can't connect MQTT(S) AWS IOT CORE +CMQTTCONNECT: 0 , 34
+CCERTLIST: "cacert.pem"
+CCERTLIST: "cert.pem"
+CCERTLIST: "keycert.pem"
OK
AT+CSSLCFG="sslversion",0,4
OK
AT+CSSLCFG="authmode",0,2
OK
AT+...
0
votes
0
answers
70
views
How to remote access devices from a web browser using secure tunneling in AWS?
For context:
We have some devices handled in AWS IOT core. Sometimes there are some issues and these things don't send data properly. So the idea is to have in the browser a terminal that allows the ...
0
votes
1
answer
402
views
Issue in accessing aws-iot-device-sdk-v2 apis from react application
I am trying to use AWS IoT Device SDK JS 2 with a simple ReactJS application.
The application is targeted to run in a browser.
I have all the required certificates and credentials with me to configure ...
0
votes
1
answer
261
views
Why is it recommended to make separate device certificates for connecting to AWS IoT Core MQTT endpoint?
AWS recommends in here that each device should have its own separate device certificate to connect to MQTT endpoint on AWS IoT Core. One can control the status of certificates then to control the ...
0
votes
1
answer
218
views
403 error when requesting AWS temporary credentials via iot
I'm following this guide to generate credentials for AWS services using a thingName, aws-iot cert and key:
https://docs.aws.amazon.com/iot/latest/developerguide/authorizing-direct-aws.html
I'm getting ...
1
vote
0
answers
216
views
Greengrass not unzipping s3 artifact
I'm trying the AWS greengrass to manage my devices. The bellow is my receipe.
{
"RecipeFormatVersion": "2020-01-25",
"ComponentName": "com.test.setup",
&...
1
vote
0
answers
350
views
Unable to connect to MQTT (AWS IoT Core) in a Flutter application
We have a Flutter application where the device subscribes to MQTT and can publish information. The application connects to AWS IoT Core using mqtt_client. The vast majority of devices running our app ...