Problême importation librairie
dd
-
dd -
dd -
Bonjour à tous,
voilà, je vous serai très reconnaissant si vous pourriez m'aider.
Etant actuellement en stage, je travaille sur un rorbot de mesure.
Mon problême est le suivant: je souhaiterai importer la librairie du moteur de mon robot de mesure (#include "..\\Lib\\Esc629Lib.h") dans un programme c# de Microsoft Visual Sudio version 2005, cependant, ayant déjà essayé pas mal de choses , je n'y arrive tjrs pas.
Voilà, si quelqu'un pourrai m'aider, ce serait sympa.
Merci d'avance.
voilà, je vous serai très reconnaissant si vous pourriez m'aider.
Etant actuellement en stage, je travaille sur un rorbot de mesure.
Mon problême est le suivant: je souhaiterai importer la librairie du moteur de mon robot de mesure (#include "..\\Lib\\Esc629Lib.h") dans un programme c# de Microsoft Visual Sudio version 2005, cependant, ayant déjà essayé pas mal de choses , je n'y arrive tjrs pas.
Voilà, si quelqu'un pourrai m'aider, ce serait sympa.
Merci d'avance.
A voir également:
- Problême importation librairie
- Les formalités d’importation sont en cours sur votre envoi. - Forum Consommation & Internet
- Echec d'importation story instagram - Forum Instagram
- Librairie anspach - Forum Consommation & Internet
- Le module d'importation a signalé une erreur générique ✓ - Forum After Effects
- Librairie valentine wtf - Forum Programmation
1 réponse
voilà mon programme pour l'instant, avec la bibliothèque de l'esc629 (#include"..\\Lib\\Esc629Lib.h") que j'essai d' importer, cependant cette librairie n'est pas accepté par le logiciel pour l'instant.
Je voudrai également savoir s'il exciste un paramètre dans microsoft visual studio version 2005, oû l'on pourrait importer des librairies en plus.
Je vs remercie d'avance, en éspérant avoir quelques réponses qui m'aideront.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
#include "..\\Lib\\Esc629Lib.h";
namespace WindowsApplication3
{
Esc629Device esc629; // create object
esc629.Open(0); // open the first of the Esc629 boards
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
esc629.StartMotion(0, MOTOR_ON); // turn on motor;
// channel 1 on;
// channel 2 on;
}
private void button2_Click(object sender, EventArgs e)
{
esc629.StartMotion(0, MOTOR_OFF); // turn off motor;
// channel 1 off;
// channel 2 off;
}
}
esc629.close(); // close the driver after work;
}
Je voudrai également savoir s'il exciste un paramètre dans microsoft visual studio version 2005, oû l'on pourrait importer des librairies en plus.
Je vs remercie d'avance, en éspérant avoir quelques réponses qui m'aideront.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
#include "..\\Lib\\Esc629Lib.h";
namespace WindowsApplication3
{
Esc629Device esc629; // create object
esc629.Open(0); // open the first of the Esc629 boards
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
esc629.StartMotion(0, MOTOR_ON); // turn on motor;
// channel 1 on;
// channel 2 on;
}
private void button2_Click(object sender, EventArgs e)
{
esc629.StartMotion(0, MOTOR_OFF); // turn off motor;
// channel 1 off;
// channel 2 off;
}
}
esc629.close(); // close the driver after work;
}