Search results

  1. H

    c# winform to control severals servos

    the basic programm: the c# one :
  2. H

    c# winform to control severals servos

    hi, this my robot : and this is a copy of the form wich can control each motor of the left arm: the picaxe program and the c# one are jointed in the folowing message The problem : when i start my form i check the check box leaded to the hand and when i move the track bar it's working...
  3. H

    controling servo with c#

    hi, with the help of some of you i have built this form : whith it you can drive servo by increment, by typing the degree value, by cliking on the seromoteur button (make the servo do one rotation) by scrolling the track bar And it's for the track bar that i have a problem (the servo don't...
  4. H

    communication pc picaxe whith c#

    it looks like this And here, two programms tested whith picaxe the first one work the second bot so the picaxe can detect the "0" information it can detect that an information is not a zero but it doesn't recognize the "1" information
  5. H

    communication pc picaxe whith c#

    Hello I'm trying to creat a winform (in c#) which can swich on/off a del via the serial port this is the form and the c# program
  6. H

    picaxe et c#

    Comme indiqué dans le code un clique sur le bouton allumer met "1"dans le buffer
  7. H

    picaxe et c#

    bonjour je tente de réaliser une appli toute simple consistant à allumer et éteindre une diode depuis un winform sous c# voila à quoi ressemble la fenetre les 2 premiers boutons ouvrent et ferment les ports les deux autres envoient 0 ou 1
  8. H

    problem servomotors power

    should i put the 4700 capacitor like in this diagramm? I don't have multimeter to check the tension but i will try tomorow at work
  9. H

    problem servomotors power

    this the power supply :
  10. H

    problem servomotors power

    Ok the diagramm isin the attachements and here the program: ; ******************************* ; ***** Sample Header File ***** ; ******************************* ; Filename: ; Date: ; File Version: ; Written by: ; Function: ; Last Revision: ; Target PICAXE: ...
  11. H

    problem servomotors power

    Hello, I have built a bipedal robot Each leg is powered with two Hs 755 mg For this systeme i'm using a 20 m2 and the power supply is a laboratory one which delivers 9v and 1.5 A During the first 15 seconds all is working but after a very short time servomotors have less and less power and...
  12. H

    probleme puissance servomoteur

    bonjour, J'ai réalisé un chassis de robot bipede dont chaque jambe est mue grace à deux Hs 755 MG l'electronique pour l'insant est très simple : un 20 m2 dont 4 sorties pilotent les 4 servos une alim de labo 7.5v-9v sous 1.5 A LE PROBLEME EST LE SUIVANT : A la mise sous tension et durant les...
  13. H

    utilisation des pointeurs

    Bonjour, pouvez vous m'expliquez pourquoi le programme ci-dessous fonctionne et permet de visualiser l'incrémentation de la variable main: bptr = 4 for b0 = 1 to 20 write @bptr,b0 pause 500 read @bptr,b1 serout 1,N2400,(#b1,13,10) pause 500 bptr = bptr +1 pause 1000 next b0 goto main...
  14. H

    problem programming 20m2

    nothing appears :
  15. H

    problem programming 20m2

    THE TWO photographs :
  16. H

    problem programming 20m2

    HELLO i use a axe118 board and axe027 usb cable to program my picaxe. It's working with all my picaxe 20m, but as soon as i try with picaxe 20 m2 i have this message : check power check cable do a reset Some body can help me ? THANKS
  17. H

    pb de transfer programme axe 118

    bonjour je tente de transférer via un cable axe 027 et une carte axe 118 un programme dans un pic 20 m2. Lors du transfert un message apparait quasi immédiatement et m'indique trois raisons possibles à l'échec de transfert : système non alimenté (j'ai fait le test et la carte est bien sous 5 v)...
  18. H

    @ptr instruction

    hello, i try to write a simple one dimension array programm : ptr = 1 let b2=0 for b1 = 1 to 4 put @ptrinc,b2 b2 = b2 +5 next b1 pause 100 for b1 = 4 to 1 step -1 get @ptrdec,b3 next b1 The main problem is the B3'values stay at 15...
Top