prototest update for testing
This commit is contained in:
@@ -1,13 +1,45 @@
|
||||
<script lang="ts">
|
||||
import { IMUReport, IMUType } from '$lib/platform_shared/example';
|
||||
//import { IMUReport, IMUType } from '$lib/platform_shared/example';
|
||||
import { AnglesData, WebsocketMessage } from '$lib/platform_shared/websocket_message'
|
||||
|
||||
const imu_report: IMUReport = {type: IMUType.IMU_ACCEL, xVal: 4}
|
||||
const writer = IMUReport.encode(imu_report);
|
||||
// const imu_report: IMUReport = {type: IMUType.IMU_ACCEL, xVal: 4}
|
||||
// const writer = IMUReport.encode(imu_report);
|
||||
// const bytes = writer.finish();
|
||||
// // Convert bytes to hex
|
||||
// const hex = Array.from(bytes)
|
||||
// .map((b) => b.toString(16).padStart(2, '0'))
|
||||
// .join(' ');
|
||||
|
||||
// const wmd: WebsocketMessage = { imu: {temp: 0, x: 0, y: 0, z: 1}, angles: {angles: [2]}}
|
||||
// const wmd: WebsocketMessage = { imu: {temp: 0, x: 0, y: 0, z: 0} }
|
||||
const wmd: WebsocketMessage = { rssi: {rssi: 16} }
|
||||
// const wmd: WebsocketMessage = { imu: {temp: 1, x: 2, y: 4, z: 5} }
|
||||
// const wmd: WebsocketMessage = { angles: {angles: [1,2,3,4]} }
|
||||
const writer = WebsocketMessage.encode(wmd);
|
||||
const bytes = writer.finish();
|
||||
// Convert bytes to hex
|
||||
const hex = Array.from(bytes)
|
||||
.map((b) => b.toString(16).padStart(2, '0'))
|
||||
.join(' ');
|
||||
|
||||
// const decodedmsg: WebsocketMessage = WebsocketMessage.decode(bytes);
|
||||
// const objects = Object.entries(decodedmsg)
|
||||
|
||||
// console.log(Object.keys(AnglesData.create())[0] )
|
||||
|
||||
// console.log(objects)
|
||||
|
||||
// console.log(Object.keys(decodedmsg))
|
||||
// if (Object.values(decodedmsg)[6] instanceof AnglesData) {
|
||||
// console.log("True0!")
|
||||
// }
|
||||
// if (Object.values(decodedmsg)[0] instanceof AnglesData) {
|
||||
// console.log("True1!")
|
||||
// }
|
||||
// if (Object.values(decodedmsg)[1] instanceof AnglesData) {
|
||||
// console.log("True2!")
|
||||
// }
|
||||
|
||||
</script>
|
||||
|
||||
<h1>Hexadecimal Output</h1>
|
||||
|
||||
Reference in New Issue
Block a user