Skip to content

Commit

Permalink
small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
baartch committed Mar 1, 2022
1 parent 9d69434 commit 50540a9
Show file tree
Hide file tree
Showing 8 changed files with 20,411 additions and 790 deletions.
3 changes: 2 additions & 1 deletion .projen/tasks.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions .projenrc.js
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
const { awscdk } = require('projen');
const { NpmAccess } = require('projen/lib/javascript');
const project = new awscdk.AwsCdkConstructLibrary({
stability: 'experimental',
stability: 'stable',
author: 'cloudxs GmbH',
authorAddress: 'https://www.cloudxs.ch',
authorOrganization: true,
majorVersion: 1,
cdkVersion: '2.1.0',
defaultReleaseBranch: 'main',
name: '@cloudxs/cdk-iot-wireless',
repositoryUrl: 'https://github.com/cloudxsgmbh/cdk-iot-wireless.git',
description: 'This package contains AWS CDK L2 constructs for IoT Wireless.',
npmAccess: NpmAccess.PUBLIC,
/* deps: [
/* deps: [
'aws-cdk-lib',
'constructs',
], */
/* bundledDeps: [
/* bundledDeps: [
'esbuild',
], */
keywords: ['aws', 'cdk', 'cdkv2', 'iot', 'wireless', 'lorawan', 'lambda', 'gateway'],
Expand Down
8 changes: 4 additions & 4 deletions API.md
Original file line number Diff line number Diff line change
Expand Up @@ -603,8 +603,8 @@ Any object.
| **Name** | **Type** | **Description** |
| --- | --- | --- |
| <code><a href="#@cloudxs/cdk-iot-wireless.LHT65Profiles.property.node">node</a></code> | <code>constructs.Node</code> | The tree node. |
| <code><a href="#@cloudxs/cdk-iot-wireless.LHT65Profiles.property.deviceProfile">deviceProfile</a></code> | <code>string</code> | Device profile for LHT65 sensors. |
| <code><a href="#@cloudxs/cdk-iot-wireless.LHT65Profiles.property.serviceProfile">serviceProfile</a></code> | <code>string</code> | Service profile for LHT65 sensors. |
| <code><a href="#@cloudxs/cdk-iot-wireless.LHT65Profiles.property.deviceProfile">deviceProfile</a></code> | <code>string</code> | Device profile ID for LHT65 sensors. |
| <code><a href="#@cloudxs/cdk-iot-wireless.LHT65Profiles.property.serviceProfile">serviceProfile</a></code> | <code>string</code> | Service profile ID for LHT65 sensors. |

---

Expand All @@ -628,7 +628,7 @@ public readonly deviceProfile: string;

- *Type:* string

Device profile for LHT65 sensors.
Device profile ID for LHT65 sensors.

---

Expand All @@ -640,7 +640,7 @@ public readonly serviceProfile: string;

- *Type:* string

Service profile for LHT65 sensors.
Service profile ID for LHT65 sensors.

---

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ new CfnOutput(this, "ruleName", {

## Dragino LHT65 Profiles

Creates a Device Profile and a Servie Profile for Dragino LHT65 sensors. All properties have a default value that fits with the current generation of sensors, but can be set individually if needed.
Creates a Device Profile and a Service Profile for Dragino LHT65 sensors. All properties have a default value that fits with the current generation of sensors, but can be set individually if needed.

```typescript
const lht65profiles = new LHT65Profiles(this, "profiles", {
Expand Down
Loading

0 comments on commit 50540a9

Please sign in to comment.