Small application/library suite to send and receive HP Prime Calculator programs.
Windows application to send, receive, convert programs and do other operations with the HP Prime Calculator.
Provides commandline access for PrimeComm operations.
Library to include HP Prime calculator functions from PrimeComm on your application. Documentation available here: http://services.ried.cl/primecomm/Help/?topic=html/4c2db46f-2e91-7461-ee2e-68962685662e.htm
Example: Small example showing how to send and convert files:
using PrimeLib;
class Program
{
static void Main(string[] args)
{
// Instantiate the first connected calculator
var myCalculator = new PrimeCalculator();
// This checks for hardware changes, there are events available too,
// to stay notified from Insertions and Removals as PrimeComm main app uses
calculator.CheckForChanges();
// Creates a ready to send data object, with a new name for the script, reading an existent program backup
var myProgram = new PrimeUsbData("my program", new PrimeProgramFile(@"d:\my_program.hpprgm", false).Data,
myCalculator.OutputChunkSize);
// Check if my calculator is connected, and send the program
if(myCalculator.IsConnected)
mycalculator.Send(myProgram);
// Save and convert the program to plain text
myProgram.Save(@"d:\my_program_backup.txt");
}
}
Note: The current version 0.7 don't implement yet the Command Server mode arguments and since this was a major change to a library based applications, there are some small glitches yet when Receiving and then doing something else.
Version 0.1: https://www.youtube.com/watch?v=4QGBjOD3LHo (Send and receive)
Version 0.5: https://www.youtube.com/watch?v=FxG-R0QZ-qI (Conversion to plain text)
Version 0.7: https://www.youtube.com/watch?v=UVALe40TPkc (Command server mode)
HID/USB Library: https://github.com/mikeobrien/HidLibrary
USB Library: https://bitbucket.org/adamfettig/usb (early version)
Source: https://github.com/eried/PrimeComm
Download: http://ried.cl/wp-content/uploads/2013/11/PrimeComm.zip
Details: http://ried.cl/proyecto/utilidad-para-intercambiar-archivos-con-la-hp-prime-primecomm/