Skip to content

Commit

Permalink
Adds HX711 Issue wokwi#101
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Wilson committed Jan 7, 2022
1 parent c40b1d7 commit 72cd525
Show file tree
Hide file tree
Showing 4 changed files with 511 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/hx711-element.stories.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import { html } from 'lit';
import './hx711-element';

export default {
title: 'Hx711',
component: 'wokwi-hx711',
argTypes: {
value: { control: { type: 'number', min: -2147483648, max: 2147483647, step: 1 } },
},
args: {
value: 0,
},
};

const Template = () => html`<wokwi-hx711 v</wokwi-hx711>`;

export const Default = Template.bind({});
Loading

0 comments on commit 72cd525

Please sign in to comment.