- App.tsx: full navigation (Auth stack + Main tabs with 5 screens) - Auth: LoginScreen, RegisterScreen, ForgotPasswordScreen - HomeScreen: dashboard with IoT metrics, weather widget, alerts, quick actions, sensors - MapScreen: interactive map with layer toggles (6 layers) - MarketplaceScreen: categories (6), products (5), search - ChatScreen: AI chat with quick prompts (4), bot responses - ProfileScreen: user info, stats, menu (9 items), logout - AlertsScreen: alert list with severity, acknowledge - SensorsScreen: sensor list with type filters (6 types), search - ZonesScreen: zone cards with stats - SettingsScreen: language picker (FR/EN/ES/DE), privacy, about - Stores: iotStore (sensors, zones, alerts), notificationStore, uiStore + i18n - Hooks: useSensors, useAlerts, useNotifications, useLocation - Components: Card, Button, LoadingSpinner, ErrorBoundary, Header - Services: iotService, notificationService (with axios API client) - Utils: formatters (temp, AQI, noise, dates), validators (email, password, IBAN) - Theme: colors.ts with full design system (Blue Ocean palette) - Ditto: fixed MongoDB connection, new JWT secrets, official gateway image
74 lines
1.7 KiB
JavaScript
74 lines
1.7 KiB
JavaScript
'use strict';
|
|
|
|
var $abs = require('math-intrinsics/abs');
|
|
var $floor = require('math-intrinsics/floor');
|
|
var $pow = require('math-intrinsics/pow');
|
|
|
|
var isFinite = require('math-intrinsics/isFinite');
|
|
var isNaN = require('math-intrinsics/isNaN');
|
|
var isNegativeZero = require('math-intrinsics/isNegativeZero');
|
|
|
|
var maxFiniteFloat16 = 65504; // 2**16 - 2**5
|
|
|
|
module.exports = function valueToFloat16Bytes(value, isLittleEndian) {
|
|
// NaN → exponent=all-ones, mantissa MSB=1 → 0x7e00
|
|
if (isNaN(value)) {
|
|
return isLittleEndian
|
|
? [0x00, 0x7e]
|
|
: [0x7e, 0x00];
|
|
}
|
|
|
|
var leastSig;
|
|
|
|
// ±0 → just the sign bit
|
|
if (value === 0) {
|
|
leastSig = isNegativeZero(value) ? 0x80 : 0x00;
|
|
return isLittleEndian
|
|
? [0x00, leastSig]
|
|
: [leastSig, 0x00];
|
|
}
|
|
|
|
// ±∞ → exponent=all-ones, mantissa=0 → 0x7c00 or 0xfc00
|
|
if ($abs(value) > maxFiniteFloat16 || !isFinite(value)) {
|
|
leastSig = value < 0 ? 0xfc : 0x7c;
|
|
return isLittleEndian
|
|
? [0x00, leastSig]
|
|
: [leastSig, 0x00];
|
|
}
|
|
|
|
var sign = value < 0 ? 1 : 0;
|
|
value = $abs(value); // eslint-disable-line no-param-reassign
|
|
|
|
// normalize to [1,2)
|
|
var exponent = 0;
|
|
while (value >= 2) {
|
|
exponent += 1;
|
|
value /= 2; // eslint-disable-line no-param-reassign
|
|
}
|
|
while (value < 1) {
|
|
exponent -= 1;
|
|
value *= 2; // eslint-disable-line no-param-reassign
|
|
}
|
|
|
|
// build mantissa (10 bits)
|
|
var mantissa = value - 1;
|
|
mantissa *= $pow(2, 10) + 0.5;
|
|
mantissa = $floor(mantissa);
|
|
|
|
// apply bias (15) and shift into place
|
|
exponent += 15;
|
|
exponent <<= 10;
|
|
|
|
// pack sign, exponent, mantissa
|
|
var result = (sign << 15) | exponent | mantissa;
|
|
|
|
// split into two bytes
|
|
var byte0 = result & 0xFF;
|
|
result >>= 8;
|
|
var byte1 = result & 0xFF;
|
|
|
|
return isLittleEndian
|
|
? [byte0, byte1]
|
|
: [byte1, byte0];
|
|
};
|