Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: 17robo_fuzi 17robo_tokyo_kaede
limit.h
00001 /* 00002 dataのmax,minの範囲内の数値を返す関数 00003 00004 limiti([int]data, [int]max, [int]min); //int用 00005 limitf([float]data, [float]max, [float]min); //float用 00006 00007 */ 00008 00009 #ifndef MBED_LIMIT_H 00010 #define MBED_LIMIT_H 00011 00012 #include "mbed.h" 00013 00014 int limiti(int data, int max, int min); 00015 float limitf(float data, float max, float min); 00016 00017 #endif
Generated on Wed Jul 13 2022 23:48:40 by
