This file contains 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
[package] | |
name = "typegen" | |
version = "0.1.0" | |
edition = "2021" | |
[dependencies] | |
clap = { version = "4.4.7", features = ["derive"] } | |
# -- App Libs | |
lib-base = { path = "../../libs/lib-base" } | |
lib-core = { path = "../../libs/lib-core" } |
This file contains 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
'use strict' | |
const autocannon = require('autocannon'); | |
let jsf = require('json-schema-faker'); | |
let schema = { | |
type: 'object', | |
properties: { | |
id: -1, | |
Info: { |
This file contains 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
package org.firstinspires.ftc.teamcode.devices; | |
import android.util.Log; | |
import com.qualcomm.robotcore.eventloop.opmode.LinearOpMode; | |
import com.qualcomm.robotcore.eventloop.opmode.OpMode; | |
import com.qualcomm.robotcore.hardware.HardwareMap; | |
import com.qualcomm.robotcore.hardware.I2cAddr; | |
import com.qualcomm.robotcore.hardware.I2cDevice; | |
import com.qualcomm.robotcore.hardware.I2cDeviceSynch; |