Zachary J. FieldsWindows IoTConner Brookstom kennardDFRobot
Published

Windows + DFRobot Kit

Bring the DF Robot Devastator to life with Windows!

BeginnerFull instructions provided8,579
Windows + DFRobot Kit

Things used in this project

Hardware components

AA battery
×6
Devastator Tank Mobile Platform
×1
Jameco Circuit Board Hardware Mounting KIT
×1
Romeo BLE
×1

Software apps and online services

Windows 10
Microsoft Windows 10

Hand tools and fabrication machines

Conical metal grinding tip
Needle Nose Pliers
Phillips Head Screwdriver
Windows Device

Story

Read more

Code

RemoteWiring library

C#
Snippet of hybrid RemoteDevice layer (Arduino wiring syntax) used in conjunction with the UwpFirmata layer of RemoteWiring to drive the RomeoBLE motor controller board.
        public RobotControl()
        {
            // setup
            App.arduino.pinMode(E1, PinMode.PWM);
            App.arduino.pinMode(E2, PinMode.PWM);
            App.arduino.pinMode(M1, PinMode.OUTPUT);
            App.arduino.pinMode(M2, PinMode.OUTPUT);
        }

        public void forward(byte l, byte r)
        {
            App.firmata.@lock();
            App.firmata.write(0x90);
            App.firmata.write(0x00);
            App.firmata.write(0x00);

            App.firmata.write(0xE5);
            App.firmata.sendValueAsTwo7bitBytes(r);
            App.firmata.write(0xE6);
            App.firmata.sendValueAsTwo7bitBytes(l);

            App.firmata.flush();
            App.firmata.@unlock();
        }

Remote Wiring Quick Controllers

This is a set of simple controllers designed to be used with Windows Remote Arduino applications.

Credits

Zachary J. Fields

Zachary J. Fields

18 projects • 150 followers
I like to make stuff.
Windows IoT

Windows IoT

38 projects • 2534 followers
We want to transform lives by connecting people, processes and objects. Build what matters most to you. Create the Internet of Your Things.
Conner Brooks

Conner Brooks

2 projects • 4 followers
tom kennard

tom kennard

1 project • 3 followers
I like to develop Windows Apps for all kinds of devices and gadgets.
DFRobot

DFRobot

62 projects • 144 followers
Empowering Creation for Future Innovators

Comments