This is still not clear.Signal from rc receiver to servo it works in one direction. signal from rc receiver to 08m2 and the servo works in the opposite direction
Are you saying if I use input 1 for the receiver and output 1 for the servo all I need to do is read the value from input 1 and apply it to output 1 with the maths
'===================================
#Picaxe 08M2
#No_Data
Setfreq M32
Pause 100
'=====================================
do
pulsin C.4,1,w0 [COLOR="#008000"] 'wait for pulse from receiver[/COLOR]
w0 = w0 max 1760 min 560 [COLOR="#008000"] '2.2ms to .7 ms [/COLOR]
w1 = 1760 - W0 + 560 [COLOR="#008000"] 'Do The Math[/COLOR]
pulsout C.2, w1 [COLOR="#008000"] 'Output to Servo [/COLOR]
Loop