I am fairly new to Scratch programming (actually, I discovered it last week), so bear with me if this is a stupid question. I have a PIC based data acquisition board that is configured as a USB HID device. It has 12 A/D channels and 8 digital I/O pins that can be used to read sensors and drive digital I/O pins.
Is there any way that such a device can be integrated into a Scratch project?
Offline
Sounds like you'll want to use Remote Sensor Connections, which lets you interface an external program with Scratch (1.4 only, not 2.0 beta).
Maybe try writing a Python script that reads data from the board and sends it as sensor updates to Scratch using scratchpy:
import scratch s = scratch.Scratch() s.connect() s.sensorupdate({'temperature' : 75})
Offline