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
# Copyright 2014-present PlatformIO <[email protected]> | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, software | |
# distributed under the License is distributed on an "AS IS" BASIS, |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
// script aligning the size of objects with each object origins (center) | |
// use case: change hole sizes | |
var dia = new Window("dialog", "unitize object scale", [0, 0, 250, 400]); | |
dia.pane1 = dia.add("panel", [5, 25, 240, 300], "refelence length"); | |
dia.radi1 = dia.pane1.add("radiobutton", [10, 10, 170, 30], "max. height"); | |
dia.radi2 = dia.pane1.add("radiobutton", [10, 35, 170, 55], "max. width"); | |
dia.radi3 = dia.pane1.add("radiobutton", [10, 60, 170, 80], "min. height"); | |
dia.radi4 = dia.pane1.add("radiobutton", [10, 85, 170, 105], "min. width"); |
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
/** | |
* @file M5AtomMic.ino | |
* @author botamochi6277 | |
* @brief Analog Microphone Test fot M5Atom Series | |
* @version 0.1 | |
* @date 2021-05-07 | |
* | |
* | |
* @licence MIT LICENCE | |
* |
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
/// Author: botamochi6277 | |
/// Licence: MIT LICENCE | |
/// Colors in this file are based on a following link. | |
/// https://github.com/altercation/solarized | |
using UnityEngine; | |
using UnityEditor; | |
namespace BotaLab | |
{ | |
/// <summary> |
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
using System.Collections; | |
using System.Collections.Generic; | |
// using Sirenix.OdinInspector; | |
using UnityEngine; | |
using UnityEngine.Serialization; | |
namespace BotaLab | |
{ | |
/** | |
* @brief A Unity Component to control position and rotation with PID controller |
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
/** | |
* @file M5Atom_Sweep.ino | |
* @author botamochi6277 ([email protected]) | |
* @brief Sweep sample with M5Atom Series | |
* @version 0.1 | |
* @date 2020-11-02 | |
* | |
* @copyright Copyright (c) 2020 | |
* @licence MIT LICENCE | |
*/ |
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
/** | |
* @file M5AtomTilt.ino | |
* @author botamochi6277 | |
* @brief tilt sensor application fot M5Atom Matrix | |
* acc value is unstable. I recommend to add filters. | |
* @version 0.1 | |
* @date 2020-08-30 | |
* | |
* @licence MIT LICENCE | |
* |
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
#include "M5Atom.h" | |
/* this Example only for M5Atom Matrix */ | |
bool IMU6886Flag = false; | |
void setup() | |
{ | |
M5.begin(true, false, true); | |
delay(50); |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
NewerOlder