Difference between revisions of "RemoteControl"
Elcanoadmin (talk | contribs) (→Current System) |
Elcanoadmin (talk | contribs) (→Summer 2024 RC controllers) |
||
| Line 5: | Line 5: | ||
* CH1 Steering | * CH1 Steering | ||
| − | * CH2 Throttle | + | * CH2 Throttle / Brake |
| − | * CH3 2 way switch | + | * CH3 2 way switch: Forward or reverse |
| − | * CH4 3 way slider switch | + | * CH4 3 way slider switch: Manual or Automatic mode |
| − | * CH5 Rotary switch | + | * CH5 Rotary switch: Request to raise gate to undock. |
| − | * CH6 Rotary switch | + | * CH6 Rotary switch: Reserved |
[https://www.amazon.com/dp/B09MS4HBC8/ref=sspa_dk_detail_2?psc=1&pd_rd_i=B09MS4HBC8&pd_rd_w=LeIXy&content-id=amzn1.sym.36d4fe03-2814-4a0b-86e2-d1e3d3071509&pf_rd_p=36d4fe03-2814-4a0b-86e2-d1e3d3071509&pf_rd_r=SF0RW81Y2X0PB3BGXJZP&pd_rd_wg=fWdsi&pd_rd_r=6c04f252-61f9-40a5-ac07-847c559b0e41&s=toys-and-games&sp_csd=d2lkZ2V0TmFtZT1zcF9kZXRhaWxfdGhlbWF0aWM Amazon] | [https://www.amazon.com/dp/B09MS4HBC8/ref=sspa_dk_detail_2?psc=1&pd_rd_i=B09MS4HBC8&pd_rd_w=LeIXy&content-id=amzn1.sym.36d4fe03-2814-4a0b-86e2-d1e3d3071509&pf_rd_p=36d4fe03-2814-4a0b-86e2-d1e3d3071509&pf_rd_r=SF0RW81Y2X0PB3BGXJZP&pd_rd_wg=fWdsi&pd_rd_r=6c04f252-61f9-40a5-ac07-847c559b0e41&s=toys-and-games&sp_csd=d2lkZ2V0TmFtZT1zcF9kZXRhaWxfdGhlbWF0aWM Amazon] | ||
Revision as of 17:26, 19 June 2026
Contents
Summer 2024 RC controllers
DumboRC X6FG 6 channel RC controller2.4 GHz 4.8-10V
Pulse width 1000-2000 milliseconds
- CH1 Steering
- CH2 Throttle / Brake
- CH3 2 way switch: Forward or reverse
- CH4 3 way slider switch: Manual or Automatic mode
- CH5 Rotary switch: Request to raise gate to undock.
- CH6 Rotary switch: Reserved
RFM69HCW
The RFM69HCW (915MHz) transceiver offers several benefits over the 433MHz ASK radios:
- greater range with higher transmit power
- much higher raw bitrate
- half-duplex communication and received signal strength indicator (RSSI)
- compatibility with higher-performance 3.3V ARM boards like SAMD21
Using the RF69 RadioHead library, the RC system has expanded capabilities from the RH ASK implementation. Data is stored on both ends as a C struct, which is broken down and transmitted as bytes by the RF69 library. After successful transmission, the data is accessible directly from the struct and variables larger than one byte need no additional processing before use. After successfully receiving a packet from the remote control, the receiver sends a packet back with an RSSI value. The remote control uses this reply message to indicate radio communication is active.
Transmitted data to vehicle
- unsigned 12-bit throttle (0-4095)
- unsigned 12-bit turn
- boolean emergency stop
- boolean autonomous mode
- signed RSSI of last received packet (from vehicle)
Received data from vehicle
- signed RSSI of last received packet (from remote)
NEXT . SensorsPage