Pigmeo was a compiler and framework for writing microcontroller firmware in C# and other .NET languages, developed by Adrián Bulnes (Urriellu) between 2007 and 2010. This is a frozen, read-only archive of the project’s website, pigmeo.org; nothing here is maintained. Source code: github.com/Urriellu/pigmeo · Original capture: Wayback Machine · urriellu.net

FE0001

From Pigmeo - .NET/Mono/CLI (C#, VB.NET, C++/CLI, Nemerle...) for microcontrollers (PIC, dsPIC, AVR...)

Unable to load assembly

The assembly (usually a .dll file) your application (the .exe file) requires was not found.

Common mistakes

Library not installed into the GAC

You forgot to install a library into the Global Assembly Cache, a database where libraries available for all the applications in your system are stored.

Library not copied locally

The libraries your application references to must be installed into the GAC or placed in the same directory as your application.

Maybe you referenced a library when you compiled your application but that library wasn't copied to the output folder (the directory where the compiled .exe file is stored, usually bin/Debug or bin/Release).