This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Zcl } from "zigbee-herdsman"; | |
import * as exposes from "zigbee-herdsman-converters/lib/exposes"; | |
import * as m from "zigbee-herdsman-converters/lib/modernExtend"; | |
const e = exposes.presets; | |
const ea = exposes.access; | |
const VSMART_MANUFACTURER_CODE = 0x1379; | |
const COMMAND_DELAY_MS = 100; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { useTheme } from '@react-navigation/native'; | |
import React, { FC } from 'react'; | |
import { | |
DimensionValue, | |
StyleSheet, | |
TouchableOpacity, | |
View, | |
} from 'react-native'; | |
import Animated, { | |
SharedValue, |