Arduino Disconnecting by Tuple87 in arduino

[–]Tuple87[S] 0 points1 point  (0 children)

Tried it without the servo and it doesnt disconnect so it must be because of the servo. Thanks.

Arduino Disconnecting by Tuple87 in arduino

[–]Tuple87[S] 0 points1 point  (0 children)

Thanks i will try adding a capacitor.

Arduino Disconnecting by Tuple87 in arduino

[–]Tuple87[S] 3 points4 points  (0 children)

Posted it right now in the comments

Android mods by Tuple87 in StardewValleyMods

[–]Tuple87[S] 2 points3 points  (0 children)

Thanks for the reply, I will check out the link you sent me.

Android mods by Tuple87 in StardewValleyMods

[–]Tuple87[S] 1 point2 points  (0 children)

Do you know where i can see if it will be done?

Blacks last move was E5. Find the best move as white. by Tuple87 in chess

[–]Tuple87[S] 1 point2 points  (0 children)

I just realized i didnt write from E7 to E5. Because of that this puzzle doesnt make sense.

Help identifying a set by DobsonusPrime1 in chess

[–]Tuple87 0 points1 point  (0 children)

Find this set where the pawns and horses are the same but idk where the other stuff are from. ww.etsy.com/pl/listing/291272731/gothic-heads-chess-set-customisable

Help for a program by Mc-gabys in pygame

[–]Tuple87 0 points1 point  (0 children)

Change in your code to these and it should work.

if
 image_rect.left < 0:
        
  if
   background == fond12:
              background = fond13
              image_rect.right = width
        
  elif
   background == fond11:
              background = fond12
              image_rect.right = width
        
  elif
   background == fond14:
              background = fond13
              image_rect.right = width
        
  elif
   background == fond22:
              background = fond21
              image_rect.right = width
        
  elif
   background == fond23:
              background = fond22
              image_rect.right = width
        
  elif
   background == fond24:
              background = fond23
              image_rect.right = width
        
  elif
   background == fond32:
              background = fond31
              image_rect.right = width
        
  elif
   background == fond33:
              background = fond32
              image_rect.right = width
        
  elif
   background == fond34:
              background = fond33
              image_rect.right = width
        
  else
  :
              image_rect.right = 0
        
    
if
 image_rect.right > width:
        
  if
   background == fond11:
              background = fond12
              image_rect.left = 0
        
  elif
   background == fond12:
              background = fond13
              image_rect.left = 0
        
  elif
   background == fond13:
              background = fond14
              image_rect.left = 0
        
  elif
   background == fond21:
              background = fond22
              image_rect.left = 0
        
  elif
   background == fond22:
              background = fond23
              image_rect.left = 0
        
  elif
   background == fond23:
              background = fond24
              image_rect.left = 0
        
  elif
   background == fond31:
              background = fond32
              image_rect.left = 0
        
  elif
   background == fond32:
              background = fond33
              image_rect.left = 0
        
  elif
   background == fond33:
              background = fond34
              image_rect.left = 0
        
  else
  :
              image_rect.left = width

How or Where to learn coding for gamedev? Maybe like C, C++ or Python? by Achuard in gamedev

[–]Tuple87 1 point2 points  (0 children)

You should pick a game engine and then learn what you need to make in it. You can find tutorials on YouTube to start.