1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

M5Stack Core2: c++ のプログラムを call する

Last updated at Posted at 2021-09-01

こちらの記事を参考にしました。
【Arduino便利技】複数のファイルを作成する方法[分割・Arduinoライブラリ呼び出し編]

フォルダー構造

$ tree test01/
test01/
├── pythagorean.cpp
├── pythagorean.h
├── test01.ino
└── test_dir
    ├── Makefile
    ├── check01.cpp
    ├── pythagorean.cpp -> ../pythagorean.cpp
    └── pythagorean.h -> ../pythagorean.h
test01.ino
// ---------------------------------------------------------------
/*
	test01.ino

					Sep/01/2021
*/
// ---------------------------------------------------------------
# include <M5Core2.h>
# include"pythagorean.h"

int nmax = 20;

// ---------------------------------------------------------------
void setup()
{
	M5.begin();
}

// ---------------------------------------------------------------
void loop() {
	Serial.println("nmax = " + String(nmax));
	int ir = calc01(nmax);
	delay(2000);

	if (ir < 50)
		{
		nmax++;
		}
}

// ---------------------------------------------------------------
int calc01(int nmax)
{
	int array[100][3];
	float ratio[100];

	int ir = pythagorean(nmax,array,ratio);
	Serial.println("ir =" + String(ir));

	for (int it =0; it < ir; it++)
		{
  		Serial.print(array[it][0]);
  		Serial.print("\t");
  		Serial.print(array[it][1]);
  		Serial.print("\t");
  		Serial.print(array[it][2]);
  		Serial.print("\t");
  		Serial.println(ratio[it]);
		}

	return ir;
}

// ---------------------------------------------------------------
pythagorean.h
int pythagorean(int nmax,int array[][3],float ratio[]);
pythagorean.cpp
// -----------------------------------------------------------------------
/*
	pytagorean.cpp

					Sep/01/2021
*/
// -----------------------------------------------------------------------
# include "pythagorean.h"

// -----------------------------------------------------------------------
int pythagorean (int nmax,int array[][3],float ratio[])
{
	int ir = 0;

	for (int ix=1; ix < nmax; ix++)
		{
		for (int jx=ix+1; jx < nmax; jx++)
			{
			int ixjx2 = ix * ix + jx * jx;
			for (int kx=jx+1; kx < nmax; kx++)
				{
				int kx2 = kx * kx;
				if (ixjx2 == kx2)
					{
					array[ir][0] = ix;
					array[ir][1] = jx;
					array[ir][2] = kx;
					float ff = float(ix);
					float gg = float(jx);
					ratio[ir] = ff / gg;
					ir++;
					}
				}
			}
		} 

	return ir;
}

// -----------------------------------------------------------------------

Arduino IDE で見た状態
test01_sep01.png

pythagorean.cpp をテストするプログラム

check01.cpp
// -----------------------------------------------------------------------
/*
	check01.cpp

						Sep/01/2021
*/
// -----------------------------------------------------------------------
# include	<iostream>
# include	<fstream>
# include	"pythagorean.h"

using namespace std;

int calc01(int nmax);
void loop();

int nmax = 20;
// -----------------------------------------------------------------------
int main(int argc, char* argv[]) {
	cerr << "*** 開始 ***\n";

	for (int it=0; it< 10; it++)
		{
		loop();
		}

	return 0;
}

// -----------------------------------------------------------------------
void loop()
{
	cout << "nmax = " << nmax << '\n';
	int ir = calc01(nmax);

  if (ir < 50)
    {
	nmax++;
    }
}

// -----------------------------------------------------------------------
int calc01(int nmax)
{
	int array[100][3];
	float ratio[100];
	int ir = pythagorean(nmax,array,ratio);
	cout << "ir =" << ir << '\n';

	for (int it=0; it < ir; it++)
		{
  		cout << array[it][0];
  		cout << "\t";
  		cout << array[it][1];
  		cout << "\t";
  		cout << array[it][2];
  		cout << "\t";
  		cout << ratio[it] << '\n';
		}


	return ir;
}

// -----------------------------------------------------------------------
Makefile
check01: check01.cpp
	clang++ -o check01 check01.cpp pythagorean.cpp
clean:
	rm -f check01

コンパイル

$ make
clang++ -o check01 check01.cpp pythagorean.cpp

実行

./check01
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?